//json类型的数据绑定
@RequestMapping(value ="json.do",method = RequestMethod.POST)
@ResponseBody
public String json(@RequestBody User user){
return user.toString();
}
在使用springMVC的@RequestBody 时遇到个问题:发送请求后总是返回 415 Unsupported Media Type不支持的媒体类型
springMVC如何才能支持json数据格式?
在*-servlet.xml配置文件中添加<mvc:annotation-driven />
这是一种简写形式,完全可以手动配置替代这种简写形式,简写形式可以让初学都快速应用默认配置方案。 会自动注册DefaultAnnotationHandlerMapping与AnnotationMethodHandlerAdapter 两个bean,是spring MVC为@Controllers分发请求所必须的。
并提供了:数据绑定支持,@NumberFormatannotation支持,@DateTimeFormat支持,@Valid支持,读写XML的支持(JAXB),读写JSON的支持(Jackson)。
网友评论