as follows, funcA calls funcB, so @ Transactional on funcB is invalid
my understanding: funcA is in a transaction, and funcB is an internal part of funcA, so funcB is in the transaction where funcA is located
but this does not seem to be the case, why?
public class MyServiceImpl{
@Transactional
funcA(){
sql_insert(a);
funcB();
}
@Transactional
funcB(){
sql_insert(b);
}
}