2018-09-25
@Transactional(propagation=Propagation.NEVER) public void update(){ Session s = sessionFactory.getCurrentSession(); Student stu = (Student)s.get(Student.class, 7); System.out.println("ok" + stu.getName()); } @Transactional(propagation=Propagation.REQUIRED) public void hasTran(){ update(); }
hasTran和update方法如果在一个bean方法里面,调用hasTran()的时候,并不报错。说明update并没有识别出它是never级别的事务传递,因为在同一个bean里面调用不识别。
如果把hasTran()放到另一个bean里面,调用hasTran()就会报错。
Existing transaction found for transaction marked with propagation 'never'
如果两个id重复了,有保护机制。
@Service public class TestService2 {
@Transactional(propagation=Propagation.REQUIRED)
public void hasTran(){
Session s = sessionFactory.getCurrentSession();
Student stu = new Student();
stu.setName("spring2018+++");
s.update(stu);
testService.update();
}
}
@Service
public class TestService {
@Transactional(propagation=Propagation.REQUIRED)
public void update(){
Session s = sessionFactory.getCurrentSession();
Student stu = new Student();
stu.setId(7);
stu.setName("spring2016");
s.update(stu);
}
}
public static void main(String[] args) {
TestService2 testService2 = (TestService2) context.getBean("testService2");
testService2.hasTran();
}
Exception in thread "main" org.hibernate.NonUniqueObjectException: A different object with the same identifier value was already associated with the session : [cn.angelshelter.spring_study.pojo.Student#7]
还有在一个事务内,如果多次调用Student stu = (Student)s.get(Student.class, 7);方法,其实只是查询了一次,不会说执行一次查询一次。
如果方法A是REQUIRED的,方法B也是REQUIRED的,方法A调用方法B,方法B会抛出运行时异常,但是在A方法中,会try{ B },最后的结果是
Exception in thread "main" org.springframework.transaction.UnexpectedRollbackException: Transaction rolled back because it has been marked as rollback-only
事务没有提交。
如果在上面的基础上,把B改为REQUIRES_NEW,然后A和B不是同一个事务,A的事务是可以提交的。
SUPPORTS最佛性,有事务就支持,没事务也通过。好像加了跟没加一个样。
NOT_SUPPORTED。无事务运行,如果你遇到一个方法