事务注解配置

1、在spring配置文件配置事务管理器

开启tx空间

(2)开启事务注解

<tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

3、在service类上面(或者service类里面方法上面)添加事务注解
(1)@Transactional,这个注解添加到类上面,也可以添加方法上面
(2)如果把这个注解添加类上面,这个类里面所有的方法都添加事务
(3)如果把这个注解添加方法上面,为这个方法添加事务

posted @ 2022-05-29 16:03  轻封侯  阅读(139)  评论(0编辑  收藏  举报