spring-mybatis.xml配置文件


 
 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <beans xmlns="http://www.springframework.org/schema/beans"
 3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4        xmlns:tx="http://www.springframework.org/schema/tx"
 5        xsi:schemaLocation="http://www.springframework.org/schema/beans
 6         http://www.springframework.org/schema/beans/spring-beans.xsd
 7         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
 8 
 9     <bean id="dataSources" class="com.mchange.v2.c3p0.ComboPooledDataSource">
10         <property name="driverClass" value="com.mysql.jdbc.Driver"/>
11         <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/phone"/>
12         <property name="user" value="root"/>
13         <property name="password" value="123456"/>
14     </bean>
15 
16     <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
17         <property name="dataSource" ref="dataSources"/>
18         <property name="mapperLocations" value="classpath:mapper/*.mapper.xml"/>
19     </bean>
20 
21     <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
22         <property name="dataSource" ref="dataSources"/>
23     </bean>
24     <tx:annotation-driven transaction-manager="txManager"/>
25 
26 </beans>
 

 




免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM