Spring声明式事务处理:基于tx命名空间
程序员文章站
2024-01-13 20:13:58
...
声明式事务处理,就是把事务处理工作从业务方法中抽取出来,然后进行横向的织入。
依赖的jar包:spring*4+spring-jdbc+spring-aop+spring-tx+aspectJweaver。这里不是很确定,加上再说。
配置文件:要有tx、aop约束。
数据源到然要:
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/sm?useUnicode=true&characterEncoding=utf-8&useSSL=true"/>
<property name="username" value="root"/>
<property name="password" value="123456"/>
事务管理器少不了:
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
使用到了aop,那就定义事务作为增强通知:
<!--相当于定义事务的增强通知,这里tx:advice是一个事务增强的集合,
tx:method是具体的增强通知。找到切入点后根据name进行匹配织入-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="get*" read-only="true"/>
<tx:method name="find*" read-only="true"/>
<tx:method name="search*" read-only="true"/>
<tx:method name="*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>
定义切入点:
<aop:config>
<!--定义切入点-->
<aop:pointcut id="txPonitcut" expression="execution(* com.imooc.sm.service.*.*(..))"/>
<!--切入点和增强整合成切面。这里就是指定了增强通知的集合,然后根据method属性的name进行具体匹配-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPonitcut"/>
</aop:config>
这就完成了声明式事务的定义。使用时就为com.imooc.sm.service包下的所有类的所有方法进行了增强。get、find等开头的方法进行了只读,通配符匹配的所有方法都设置了事务传播机制为REQUIRED。
上一篇: 数据库之日期类型
下一篇: Vuejs组件之间的通信