인터페이스가 호출되어 jsonArray 처리 jsonArray 데이터를 되돌려줍니다

자세히 보기
 
 @RequestMapping(value = "/querySource.htm", method = RequestMethod.POST)
public String init(HttpServletRequest request ) throws IOException {

Map map = new HashMap();
        Enumeration> fields = request.getParameterNames();

        while(fields.hasMoreElements())
        {
            String field = (String) fields.nextElement();
            String[] values = request.getParameterValues(field);
            if (values.length > 1)
                map.put(field, values.toString());
            else
                map.put(field, values[0]);
        }
        logger.info("*** jsonArray:"+map.get("jsonArray"));




if(map.get("jsonArray")!=null && map.get("jsonArray").length()>0){
 String arrayStr = map.get("jsonArray");

            List postAccountVOList = new ArrayList();

            List> listObjectSec = JSONArray.parseObject(arrayStr,List.class);
            Map mapList = new HashMap();
            for(int i=0;i 
  

http

좋은 웹페이지 즐겨찾기