Pages

2014년 2월 17일 월요일

[SPING] 데이터 json 으로 가지고 오기


context.xml 에 추가 
1
2
3
4
5
6
7
<mvc:annotation-driven>
  <mvc:message-converters register-defaults="true">
    <bean class = "org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
      <property name="supportedMediaTypes" value = "text/plain;charset=UTF-8" />
    </bean>
  </mvc:message-converters>  
</mvc:annotation-driven>



Controller 추가 
1
2
3
4
public  @ResponseBody Map<?,?> listJson(@RequestParam Map<String, Object> paramMap, ModelMap model) throws Throwable{
    model.put("results", mainService.getList(paramMap));
    return model;
  }

[출처:JAVA Project - Spring 강좌]

댓글 없음:

댓글 쓰기