|
|
<?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:aop="http://www.springframework.org/schema/aop"
|
|
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
|
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.xsd
|
|
|
http://www.springframework.org/schema/aop
|
|
|
http://www.springframework.org/schema/aop/spring-aop.xsd
|
|
|
http://www.springframework.org/schema/tx
|
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
|
|
|
|
|
<!--开启注解扫描,只希望处理service和dao,controller不需要spring处理-->
|
|
|
<context:component-scan base-package="cn.ppdxzz">
|
|
|
<!--配置controller注解不被扫描-->
|
|
|
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
|
|
|
</context:component-scan>
|
|
|
<!--读取db.properties配置文件-->
|
|
|
<context:property-placeholder location="classpath:db.properties" />
|
|
|
<!--配置连接池-->
|
|
|
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
|
|
|
<property name="driverClass" value="${jdbc.driver}" />
|
|
|
<property name="jdbcUrl" value="${jdbc.url}" />
|
|
|
<property name="user" value="${jdbc.username}" />
|
|
|
<property name="password" value="${jdbc.password}" />
|
|
|
</bean>
|
|
|
<!--配置SqlSessionFactory工厂-->
|
|
|
<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
|
|
|
<property name="dataSource" ref="dataSource" />
|
|
|
<!-- 传入PageHelper的插件 -->
|
|
|
<property name="plugins">
|
|
|
<array>
|
|
|
<!-- 传入插件的对象 -->
|
|
|
<bean class="com.github.pagehelper.PageInterceptor">
|
|
|
<property name="properties">
|
|
|
<props>
|
|
|
<prop key="helperDialect">mysql</prop>
|
|
|
<prop key="reasonable">true</prop>
|
|
|
</props>
|
|
|
</property>
|
|
|
</bean>
|
|
|
</array>
|
|
|
</property>
|
|
|
</bean>
|
|
|
<!--配置dao接口映射扫描包-->
|
|
|
<bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
|
|
|
<property name="basePackage" value="cn.ppdxzz.dao" />
|
|
|
</bean>
|
|
|
<!-- 配置Spring的声明式事务管理 -->
|
|
|
<!-- 配置事务管理器 -->
|
|
|
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
|
|
|
<property name="dataSource" ref="dataSource"/>
|
|
|
</bean>
|
|
|
|
|
|
<tx:annotation-driven transaction-manager="transactionManager"/>
|
|
|
</beans> |