1
vote
1answer
691 views
Refactoring a Hibernate entity into subclasses
I have a class that is currently mapped as an entity in a database table using Hibernate. This class should be refactored into an abstract class containing some field common to all of its subclasse …
1
vote
4answers
2k views
Hibernate and Spring transactions - using private constructors/static factory methods
We have a Hibernate/Spring application that have the following Spring beans:
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager" …
