spring 事务配置

<!-- 以下为项目配置 -->
	<context:annotation-config />
	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
		<property name="url" value="jdbc:mysql://localhost:3306/sdtvlyb"></property>
		<property name="username" value="root"></property>
		<property name="password" value="root"></property>
	</bean>
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource" />
	</bean>
	<tx:annotation-driven transaction-manager="transactionManager"/>

spring jdbcTemplate 和事物的配置 
		在service上增加以下注解
		@Service
		@Transactional(rollbackFor=Exception.class)


你可能感兴趣的:(spring 事务配置)