Spring MVC框架基础配置文件

SpringMVC:web.xml简单配置

 <!-- 过滤器   过滤post字符-->
  <filter>
      <filter-name>encode</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>encode</filter-name>
      <url-pattern>/*</url-pattern>  
  </filter-mapping>
  
   <!-- 配置前端控制器 -->
   <servlet>
        <servlet-name>mvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
               <!-- 加载配置文件 -->
               <param-name>contextConfigLocation</param-name>
                              <!-- 通配符 -->
               <param-value>classpath:spring-*.xml</param-value>
        </init-param>
   </servlet>
   <servlet-mapping>
          <servlet-name>mvc</servlet-name>
          <url-pattern>*.action</url-pattern>    
   </servlet-mapping>

SpringMVC: spring-mvc.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:util="http://www.springframework.org/schema/util"  
	xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:p="http://www.springframework.org/schema/p"
	xmlns:c="http://www.springframework.org/schema/c"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
		http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
		http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
		http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
		http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd"	
		>
		<!-- 开启扫描 -->
		<context:component-scan base-package="com"></context:component-scan>
		<!-- 支持@requestMapping -->
		<mvc:annotation-driven conversion-service="conversionService"/>
		<!-- 日期参数(字符串)在传到controller的时候转换为时间格式 -->
		<bean name="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
		      <!-- 配置转换器 -->
		      <property name="converters">
		            <set>
		                 <bean class="com.yun.converter.DateConverter"></bean>
		            </set>
		      </property>
		</bean>
		
		<!-- 配置视图解析器 -->
		<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		      <!-- 配置视图前缀 -->
		      <property name="prefix" value="/WEB-INF/jsp/"></property>
		      <!-- 配置视图后缀 -->
		      <property name="suffix" value=".jsp"></property>
		</bean>
		<!-- 配置数据源 -->
		<bean name="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		      <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
		      <property name="url" value="jdbc:mysql://127.0.0.1:3306/springmvc?useUnicode=true&amp;characterEncoding=utf-8"></property>
		      <property name="username" value="root"></property>
		      <property name="password" value="root"></property>
		</bean>
		
		<!-- SqlsessionFactoryBean组件       为整合应用提供sqlsession实例 -->
		<bean id="sqlsessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
		       <!-- 配置数据源属性  -->
		       <property name="dataSource" ref="dataSource"></property> 
		       <!-- sqlMapper.xml文件路径 -->
		       <property name="mapperLocations" value="classpath:com.yun.mapper.*.xml"></property>
		       <!-- 主配置文件信息 -->
		       <!-- <property name="configLocation" value="classpath:SqlMapConfig.xml"></property> -->
		       <!-- *mapper.xml起别名 -->
		       <property name="typeAliasesPackage" value="com.yun.entity"></property>
		</bean>
		
		<!-- 事务 -->
		<bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		        <!-- 配置数据源 -->
		        <property name="dataSource" ref="dataSource"></property>
		</bean>
		<!-- 事务通知范围 -->
		<tx:advice id="txAdvice" transaction-manager="transactionManager">
		     <tx:attributes>
		            <tx:method name="find*" read-only="true"/>
		            <tx:method name="update*" />
		     </tx:attributes>
		</tx:advice>
		
		<!-- aop -->
		<aop:config>
		     <aop:advisor advice-ref="txAdvice" pointcut="within(com.yun.service..*)"/>
		     <!-- 切面  -->
		     
		</aop:config>
		
		<!-- 实例化mapper接口 -->
		<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		       <property name="basePackage" value="com.yun.mapper"></property>
		</bean>
		
		
</beans>





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值