public ModelAndView List(HttpServletRequest request, HttpServletResponse response,Product prod) throws Exception {
Map map=new HashMap() ; List list = testService.getAllEquipType();//데이터베이스에서 소스 데이터 가져오기 JSONArray jsonArray = JSONArray.fromObject(list); //목록 데이터를 json 객체로 변환 String json = jsonArray.toString() ; //json 객체를 문자열로 변환 map.put("jsonList", json) return new ModelAndView("equip/List").addAllObjects(map); }