day64_SpringMVC学习笔记_02
1、springmvc对多视图的支持 (1)导入xml格式视图支持的jar包 注意 :springmvc本身就支持xml格式,所以不用导入其他支持的jar包了。 (2)在springmvc.xml中配置支持多视图 <!-- 配置支持多视图 --> < bean class = "org.springframework.web.servlet.view.ContentNegotiatingViewResolver" > <!-- 配置支持的媒体类型 --> <!-- spring3.2后改成如下配置 --> < property name = "contentNegotiationManager" > < bean class = "org.springframework.web.accept.ContentNegotiationManagerFactoryBean" > <!-- 指定多个媒体类型 --> < property name = "mediaTypes" > < map > < entry key = "json" value = "application/json" > </ entry > < entry key = "xml" value = "application/xml" > </ entry > <!-- <entry key="pdf" value