[关闭]
@File 2019-10-08T09:33:12.000000Z 字数 649 阅读 89

spring-tx 事务配置

java


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 http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
  6. <bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  7. <property name="dataSource" ref="dataSource" />
  8. </bean>
  9. <tx:annotation-driven />
  10. </beans>

注解

@Transactional 开启

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注