导包
xmlns:tx="https://www.springframework.org/schema/tx"
xsi:schemaLocation="https://www.springframework.org/schema/tx https://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
<!--配置事务管理器-->
<bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--启用事务注解-->
<tx:annotation-driven transaction-manager="dataSourceTransactionManager"/>导包
xmlns:tx="https://www.springframework.