1. 程式人生 > >SpringMVC 統一返回JSON格式資料到前端

SpringMVC 統一返回JSON格式資料到前端

有時在給APP做介面功能的時候,都是返回JSON格式的資料,所以最好的只好在工程設定一個統一的資料返回方式

        在SpringMVC 直接配置XML可以產生這種配置,比較簡單

        Spring的版本我用的是4.3.3的

<bean id="mappingJacksonHttpMessageConverter"

    class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">

<property name="supportedMediaTypes">

<list>

<value>application/json</value>

<value>application/javascript</value>

<value>text/json</value>

<value>text/javascript</value>

</list>

</property>

</bean>

<bean id="httpMessageConverter"

        class="org.springframework.http.converter.StringHttpMessageConverter">

<property name="supportedMediaTypes">

<list>

<value>text/plain;charset=UTF-8</value>

</list>

</property>

</bean>

<!-- 統一返回JSON格式資料 -->

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">

<property name="messageConverters">

<list>

<ref bean="httpMessageConverter" />

<ref bean="mappingJacksonHttpMessageConverter" />

</list>

</property>

</bean>

那麼介面方法 你就可以隨便返回資料了

@RequestMapping("/user/list")

@ResponseBody

public List getSelectAll(Model model) throws Exception {

List list = null;

try {

list = userService.selectAll();

model.addAttribute("result", list);

} catch (Exception e) {

e.printStackTrace();

}

return list;

}