pany.modelquot; /gt; lt;property name=quot;hibernatePropertiesquot;gt;lt;valuegt; hibernate.dialect=org.hibernate.dialect.Oracle10gDialect hibernate.current_session_context_class=org..orm.hibernate3.SpringSessionContext hibernate.show_sql=truelt;/valuegt; lt;/propertygt; lt;/beangt;
It looks as though I am missing something really basic... Any suggestions?
Thoughts anyone??
Problem Solved...!!!!!
The issue seems to be the location of the @Transactional annotation. I had the annotation placed in an abstract class which for some reason did not work. As soon as I moved the annotation to the child (concrete) class, everything worked as expected.
It would be nice, if someone can explain why the annotation did not work in the generic abstract class.
Maybe your answer is here: showthread.php?t=13732
Originally Posted by andrethiagoMaybe your answer is here: showthread.php?t=13732
Thanks Andrethiago, it helped. |