list « Component « JPA Q&A





2. List of components ("composite-element") doesn't g    forum.hibernate.org

Hibernate version: 3.1 Name and version of the database you are using: PostgreSQL 8.1 Hi, I'm using composite-element to map this: A list of instructions. I have operations, an operation is composed by an ordered list of instructions. This is part of my mapping: Code: ... ...

3. Posible bug in Hibernate with list of components.    forum.hibernate.org

Hibernate version: 3.1 What if there is a List of components (with composite-element) with multiple objects, but every object in the list has all its fields with null. An object with all fields null is stored as simply null (as per the documents). But in org.hibernate.collection.PersistentList.needsInserting() says to always insert if the entry is null... and then Hibernate tries to repeat ...

4. [3.1] Possible bug with in (i    forum.hibernate.org

Newbie Joined: Tue Jul 12, 2005 5:41 am Posts: 7 SITUATION: I have a Holder which contains a class Container1 which, in turn, has a List of objects of Container2. --- CLASS DEFINITIONS: This is Holder: Code: package testPZ; import java.io.Serializable; public class Holder implements Serializable{ private static final long serialVersionUID = 1L; ...