@Transactional(propagation = Propagation.NOT_SUPPORTED)
public void a(){
a();
b();
}
@Transactional(propagation = Propagation.REQUIRED)
public void b(){
//do something
}
@Transactional(propagation = Propagation.REQUIRED)
public void c(){
//do something
}
the method b() and the method c() use same transaction? thanks.