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;
}

실행 결 과 는 다음 그림 과 같 습 니 다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기