actually i have a serviceA that is a transactional service that uses JtaTransactionManager
this service when it is executed there is an aop advice that is executed before , this advice calls the database and calls a service that is annotated transactional .
and i have this error
java.sql.SQLException: IJ031019: You cannot commit during a managed transaction
NB : i am using xml spring beans it is a legacy code my beans are xml but my services i use @transactional annotation
do you have a solution?