Spring MVC가 프런트로 JSON으로 돌아왔습니다.

378 단어 jsonspringMVC
JSONArray json = JSONArray.fromObject(childNode.toArray());
        String s = json.toString();
        response.setContentType("text/json; charset=UTF-8");
        response.setCharacterEncoding("UTF-8");
        try {
            response.getWriter().write(s);
        } catch (IOException e) {
            e.printStackTrace();
        }

좋은 웹페이지 즐겨찾기