I\'ve seen a method in a Service class that was marked as @Tr开发者_如何学运维ansactional, but it was also calling some other methods in that same class which were not marked as @Transactional.
I am trying to configure JSF+Spring+hibernate and I\'m tying to run a test but when I use this \"tx:annotation-driven\" on my application-context.xml file, I get this error:
I have been stuck at this for a while. I have been developi开发者_如何学Pythonng a gwt + spring backend java project. My project is structure with a GWT project and another java project for spring ser
Upgrading my project I\'m thinking here about transactions. Well, the thing is I\'m not quite sure when should I use the transactions for my Hibernate queries in Spring.
I currently using Spring + JPA + hibernate in a project. Then i decide my design pattern in model dan DAO implementation.
I am using Spring transactions so the transaction is still active when POJO to DTO conversion occurs.
I want to achieve transaction like functionality in java. I want to do `n\' operations like- one operation to update database, one to insert in a queue, one operation to update another data structure
I\'ve been following this tutorial: http://www.scribd.com/doc/25244173/Java-Struts-Spring-Hibernate-Tutorial
I use in my project annotation-based transaction management (I annotate some methods with @Transactional). I would like t开发者_运维问答o set the isolation level globally (not by putting it as an argu
In my project I use Hibernate with programmatic transaction demarcation. Every time in my Service methods i write something similar to this.