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