Search Results

1
vote
1answer
676 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" …
0
votes
1answer
135 views

Pax-import-bundle and Spring DM bundles

Hi, I'm following the examples from Modular Java but I'm having trouble with chapter 6 and adding the Spring D …
0
votes

Pax-import-bundle and Spring DM bundles

The problem was a combination of missing repositories and wrong version of the artifact (1.2.0 instead of 1.2). pax-add-repository -i springsource-repository-release -u http://repositor …
2
votes

When to use wrapper class and primitive type

Collections are the typical case for the simple Java wrapper objects. However, you might consider giving the Wrapper a more specific meaning in the code (value object). IMHO there's almost …