码迷,mamicode.com
首页 > 编程语言 > 详细

[springMvc]常见配置

时间:2019-11-15 18:40:41      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:class   coding   lis   pac   nal   oca   ota   app   org   

[springMvc]常见配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	    http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 配置自动扫描的包 -->		
<context:component-scan base-package="com.booway.mhsy.*"></context:component-scan>
<!-- 配置注解驱动 -->
<mvc:annotation-driven>
<!-- 配置json,支持json解析 -->
<mvc:message-converters register-defaults="true">
				<bean id="fastJacksonMessageConverter" class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
					<property name="supportedMediaTypes">
						<list>
							<value>application/json;charset=UTF-8</value>
						</list>
					</property>
					<property name="dateFormat" value="yyyy-MM-dd HH:mm:ss"></property>
				</bean>
			</mvc:message-converters>
</mvc:annotation-driven>
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value="/WEB-INF/"></property>
<property name = "suffix" value = ".jsp"></property>
</bean>
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
		<property name="order" value="1" />
 
		<property name="defaultViews">
			<list>
				<!-- JSON View -->
				<bean
					class="org.springframework.web.servlet.view.json.MappingJackson2JsonView">
				</bean>
			</list>
		</property>
	</bean>
</beans>


[springMvc]常见配置  

[springMvc]常见配置

标签:class   coding   lis   pac   nal   oca   ota   app   org   

原文地址:https://www.cnblogs.com/zyfBlogShare/p/11868509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!