in my project there are classes containing @Transactional(rollbackfor=Exception.class). When compiling and packaging my project, a jar file is created. However, looking at the @Transactional(roolbackfor=Exception.class) classes, I saw @Transactional(rollbackfor={null}). What is the reason of that _? And What is the solution ?
Thank you
I downloaded the project, but I don’t see any problem. When I import the jar in a different project I still see the correct rollback for.
I issued
mvn clean installon command line to generate the jar. I had a look at your committed jar. Yours looks similar to mine, no problem even with it. I even decompiled it and I can see therollbackFor={Exception.class}inAzerAuthorityDaoImpl.