数据库的操作离开不了事务,
那么在SpringBoot中如何使用事务呢
答案:使用注解 @Transactional,在需要使用事务的方法上面加入@Transactional注解
@Transactional
public int upD(){
……
}