springmvc中通过使用jackson配置来处理springmvc对json的支持,通过@ResponseBody来将后台对象转成json对象传给调用者,通过@RequestBody来将调用者传过来的json字符串转换为后台使用的对象具体配置如下
在spring-mvc.xml中
<
bean
id
=
"mappingJacksonHttpMessageConverter"
class
=
"org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"
>
<
property
name
=
"supportedMediaTypes"
>
<
list
>
<
value
>text/html;charset=UTF-8</
value
>
</
list
>
</
property
>
</
bean
>
<
bean
class
=
"org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"
>
<
property
name
=
"messageConverters"
>
<
list
>
<
ref
bean
=
"mappingJacksonHttpMessageConverter"
/>
</
list
>
</
property
>
</
bean
>
此时@ResponseBody已经可以正常向调用者输出json对象了,但是@RequestBody这个还不能正常的工作 还需要调用者配置 contentType:"application/json", 然后将json对象转换为json字符串 这样@RequestBody才能起作用,要不然就会报Unsupported media type 不支持这个类型。至此问题解决。好了,继续写代码了