@ResponseBodyhtml
在返回的數據不是html標籤的頁面,而是其餘某種格式的數據時(如json、xml等)使用;java
不在springMvc中配置json的處理的話,咱們一般會在Controller層中獲取到數據以後進行類型轉化,將數據轉成json字符串,好比調用fastjson進行轉化,以下web
@RequestMapping("/getCategoryTree") @ResponseBody public String getmCategoryTree() { String data = JSON.toJSONString(categoryService.getCategoryList()); return data; }
這樣的話,當咱們有不少須要返回json數據的時候,就在每一個方法中都要寫一次轉化而後再返回,下面經過在springmvc的xml配置文件中進行配置,能夠省去之後代碼中的轉化操做spring
配置以下json
<bean id="jsonConverter" class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"></bean> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="messageConverters"> <list> <ref bean="jsonConverter" /> </list> </property> </bean>
注意此配置還須要在pom.xml文件中導入mvc
<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.5.4</version> </dependency>
此時再看看Controller層中的代碼app
@RequestMapping("/getCategoryTree") @ResponseBody public List<Category> getCategoryTree() { return categoryService.getCategoryList(); }
此時就沒有了json轉化的那步操做了,可是注意此時的返回結果再也不是String類型,而是要保持與service層中的返回類型一致。xml
created by 夏德旺htm