- Springmvc多视图
多视图是一个方法可以返回json/xml等格式的数据
第一步:导入xml格式支持的jar包
第二步:配置支持多视图
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver"> <!-- 配置支持媒体类型 --> <property name="contentNegotiationManager"> <bean class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean"> <property name= |