关于Spring的Transactional注解作用范围

一、继承自父类,父类不标为只读则可写

// 父类此处未加注解,则按默认可读写
public class BaseMngService { // 父类
    public int update(User entity) {
        // 此处执行dao.update
    }
}

@Service
@Transactional(readOnly = true)
public class UserService extends BaseMngService { // 子类
    @Override
    public int update(User entity) {
        return super.update(entity);
    }
}

二、继承自父类,父类标为只读,则是只读

public class BaseMngService { // 父类
    @Transactional(readOnly = false) // 标为只读
    public int update(User entity) {
        // 此处执行dao.update
    }
}

@Service
@Transactional(readOnly = true)
public class UserService extends BaseMngService { // 子类
    @Override
    public int update(User entity) {
        return super.update(entity);
    }
}

二、子类可以覆盖父类的注解

public class BaseMngService { // 父类
    @Transactional(readOnly = false) // 标为只读
    public int update(User entity) {
        // 此处执行dao.update
    }
}

@Service
@Transactional(readOnly = true)
public class UserService extends BaseMngService { // 子类
    @Override
    @Transactional(readOnly = true) // 标为只读
    public int update(User entity) {
        return super.update(entity);
    }
}

这个时候,虽然父类的update方法是注解是可写的,但是因为子类的注解是只读的,所以只在调用子类的update方法时,也是只读的。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值