Spring MVC

1、在web.xml加载Spring配置 
<!--防止内存泄露 -->
  <listener>
		<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
  </listener>
  
  <!-- 将bean的配置信息引入上下文使用WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()));-->  
  <listener>       
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>    
  </listener>  
  <context-param>
       <param-name>contextConfigLocation</param-name>
       <param-value>/WEB-INF/spring/AppContext.xml</param-value>
  </context-param>
  
  <listener>
	   <listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
  </listener>
  
  <!--统一编码 -->
  <filter>
	<filter-name>setCharacterEncoding</filter-name>
	<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
	<init-param>
		<param-name>encoding</param-name>
		<param-value>UTF-8</param-value>
	</init-param>
  </filter>

  <filter-mapping>
	<filter-name>setCharacterEncoding</filter-name>
	<url-pattern>/WEB-INF/*</url-pattern>
  </filter-mapping>
	
	<filter>
		<filter-name>httpMethodFilter</filter-name>
		<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class><!-- 支持put,delete等method -->     
	</filter>
	<filter-mapping>
		<filter-name>httpMethodFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<!-- 自己定义filter begin --> 
	<filter>
		<filter-name>InfoFilter</filter-name>
		<filter-class> com.mvc.controller.InfoFilter</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>InfoFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>
	<!-- 自己定义filter end --> 
	 <servlet>
		<servlet-name>App</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/spring/AppContext.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>App</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
	 <servlet-mapping>
	       <servlet-name>App</servlet-name>
	       <url-pattern>*.do</url-pattern>
	</servlet-mapping>


2、Spring配置文件AppContext.xml:

<?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:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:oxm="http://www.springframework.org/schema/oxm"
	xmlns:flow="http://www.springframework.org/schema/webflow-config"
	xmlns:int-mail="http://www.springframework.org/schema/integration/mail"
	xmlns:int-jms="http://www.springframework.org/schema/integration/jms"
	xmlns:int-stream="http://www.springframework.org/schema/integration/stream"
	xmlns:jdbc="http://www.springframework.org/schema/jdbc"
	xmlns:jee="http://www.springframework.org/schema/jee"
	xmlns:jms="http://www.springframework.org/schema/jms"
	default-autowire="byName" default-lazy-init="false"
	xmlns:lang="http://www.springframework.org/schema/lang"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:task="http://www.springframework.org/schema/task"
	xmlns:int-file="http://www.springframework.org/schema/integration/file"
	xsi:schemaLocation="http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
		http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
		http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd
		http://www.springframework.org/schema/integration/mail http://www.springframework.org/schema/integration/mail/spring-integration-mail.xsd
		http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms.xsd
		http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
		http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd
		http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
		http://www.springframework.org/schema/webflow-config http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.0.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
		http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
		http://www.springframework.org/schema/integration/file http://www.springframework.org/schema/integration/file/spring-integration-file.xsd
		http://www.springframework.org/schema/integration/jms http://www.springframework.org/schema/integration/jms/spring-integration-jms.xsd
		http://www.springframework.org/schema/integration/stream http://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
		
    <context:component-scan base-package="com.sinolife"/>
    <context:property-placeholder location='classpath:cfg.properties' />
    <mvc:annotation-driven />
    <mvc:resources mapping="/resources/**" location="/resources/" />
    <!-- 系统页面布局 -->
    <mvc:resources mapping="/sf_home/**" location="/sf_home/" />
    <mvc:default-servlet-handler />
    <aop:config proxy-target-class="true"/>
    
    <!--单数据源事务控制 --> 
    <tx:annotation-driven transaction-manager="txManager"/>
   
   <import resource="controllers.xml" />
   <import resource="webflow.xml" />
   <import resource="comm.xml" />
   
   <bean id="txManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource" />
		<!-- 因为UM是只读所以 不需要配置事物管理器,不需要JTA。后续通过把um表受只读权限给业务系统数据库,达到用同一个Datasource -->
	</bean>
    
   	
   <bean id="dataSource" name="dataSource"
		class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="user" value="${jdbc.user}"></property>
		<property name="password" value="${jdbc.password}"></property>
		<property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
		<property name="driverClass" value="${jdbc.driverClass}"></property>
		<property name="maxPoolSize" value="${jdbc.poolmax}"></property>
		<property name="minPoolSize" value="${jdbc.poolmin}"></property>
		<property name="initialPoolSize" value="${jdbc.poolinit}"></property>
	</bean>
      
    <bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
        <property name="configLocation">
            <value>classpath:sql-map-config.xml</value>
        </property>
        
        <!--<property name="mappingLocations">
        	<value>classpath*:/com/sinolife/**/*-ibatis2.xml</value>
        </property>
         
        --><property name="dataSource" ref="dataSource"/>
        <property name="useTransactionAwareDataSource" value="true"></property>   
    </bean>
    <!--文件上传-->
    <bean id="multipartResolver"
           class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="maxUploadSize" value="10485760"/> 
    </bean>        
</beans>


 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值