标签: java json spring rest spring-mvc
我使用spring mvc
我有休息网络服务的控制器
有时我想要返回xml,有时候 - json。在classPath中我有和jackson和jaxb
我如何在它们之间切换?
答案 0 :(得分:1)
你想要的是ContentNegotiatingViewResolver:
ContentNegotiatingViewResolver
http://docs.spring.io/spring/docs/3.2.x/javadoc-api/org/springframework/web/servlet/view/ContentNegotiatingViewResolver.html
答案 1 :(得分:0)
您需要ContentNegotiatingViewResolver。请检查Spring documentation 关于此事,特别是返回多个表示部分。