i write multiple inner transactional method that all of them are in on transaction.
@Transactional(propagation=Propagation.REQUIRED)
A(){
@Transactional(propagation=Propagation.REQUIRED)
b() {
//and so on ...
}
}
every error that has occured every where in methods is the same:"Transaction marked as rollback only"! how can i see the main detail error and show it to the client until it be clear that exactly what happend?