Spring MVC 3 JSON 데이터 로 돌아 가기
Spring 버 전:3.2.2.RELEASE
Jackson JSON 버 전:2.1.3
해결 방향:Controller 의 방법 에서 response 를 통 해 네트워크 흐름 에 String 형식의 json 데 이 터 를 직접 기록 합 니 다.
Jackson 의 ObjectMapper 를 사용 하여 자바 대상 을 String 형식의 JSON 데이터 로 변환 합 니 다.
중국어 의 난 장 판 을 피하 기 위해 서 는 UTF-8,GBK 등 문자 인 코딩 형식 을 설정 해 야 합 니 다.
코드 는 다음 과 같 습 니 다:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import com.fasterxml.jackson.databind.ObjectMapper; //Jsckson JSON Processer
import java.util.*;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.*;
import java.io.PrintWriter;
import java.nio.charset.Charset;
/**
* Created with IntelliJ IDEA 12.0
* Date: 2013-03-15
* Time: 16:17
*/
@Controller
public class HomeController {
@RequestMapping(value="/Home/writeJson", method=RequestMethod.GET)
public void writeJson(HttpServletResponse response)
{
ObjectMapper mapper = new ObjectMapper();
HashMap<String,String> map = new HashMap<String,String>();
map.put("1"," ");
map.put("2"," ");
map.put("3"," ");
map.put("4", "Jackson");
String json = "";
try
{
json = mapper.writeValueAsString(map);
System.out.println(json);
//
ServletOutputStream os = response.getOutputStream(); //
os.write(json.getBytes(Charset.forName("GBK"))); // json
os.flush();
//
response.setCharacterEncoding("UTF-8"); //
response.setContentType("text/html"); //
PrintWriter out = response.getWriter(); //
out.print(json); // json
out.flush();
}
catch(Exception e)
{
e.printStackTrace();
}
//return "home";
}
}
또 다른 방법 은@RequestMapping 의 produces 인 자 를 설정 하고 코드 는 다음 과 같 습 니 다.사고방식:@ResponseBody 주 해 를 사용 하여 json 문자열 을 직접 되 돌려 줍 니 다.중국어 난 호 를 방지 하기 위해@RequestMapping 의 produces 파 라미 터 를'text/html'로 설정 합 니 다.charset=UTF-8"이면 된다.
@RequestMapping(value="/Home/writeJson", method=RequestMethod.GET, produces = "text/html;charset=UTF-8")
@ResponseBody
public Object writeJson(HttpServletResponse response)
{
ObjectMapper mapper = new ObjectMapper();
HashMap<String,String> map = new HashMap<String,String>();
map.put("1"," ");
map.put("2"," ");
map.put("3"," ");
map.put("4", "Jackson");
String json = "";
try
{
json = mapper.writeValueAsString(map);
System.out.println(json);
}
catch(Exception e)
{
e.printStackTrace();
}
return json;
}
실행 결 과 는 다음 그림 과 같 습 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.