欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring4.x jdbcTemplate配置,事务配置

程序员文章站 2022-04-25 08:29:34
...

 

<!-- spring jdbcTemplate -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
	<property name="dataSource" ref="dataSource"></property>
</bean>

<!-- 事务管理器 -->
<bean id="txManager"
	class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 
	<property name="dataSource" ref="dataSource" />
</bean>

<!-- 事物注解驱动 -->
<tx:annotation-driven transaction-manager="txManager" />

 

spring4.x dbcp,dbcp2连接池基本配置BasicDataSource
http://happyqing.iteye.com/blog/2304131

 

spring4.x c3p0连接池基本配置ComboPooledDataSource
http://happyqing.iteye.com/blog/2303239