0
votes
0answers
16 views

SQL-Like Set Operations On Sets Of Arbitrary Classes (Including Joining to JPA @Entity's)

I'm importing 3 CSV spreadsheets for use in a java app. Each row is marshaled into a class that has a property for each field + some behavior. I want to be able to easily do SQL-like set operations ...
1
vote
1answer
85 views

Mapping a set in Hibernate with a composite primary key

For reasons related to DB replication, I need all the tables in my DB to have primary keys. Some of the entities in my application are defined like the following one: <class name="Item" ...
0
votes
2answers
80 views

Hibernate - one-to-many

Welcome, I am using property-ref to associate this foreign key with some other column of my class rather than primary key. the column other than primary key is not unique. now when I am trying to ...
0
votes
0answers
33 views

Hibernate saveorupdate parent and child collection

I have the following relationship setup: Parent (p) has collection of children (listc). In the application, the following use cases can occur: User creates new parent with new listc. User edits ...
1
vote
0answers
74 views

converting hashmap to hashset retaining the constraints

I had a entity class which was using hashmap to one of the attribute with one to many mapping. Now I have converted that map to separate entity class with foreign key constraint. Before class ABC{ ...
0
votes
0answers
77 views

Constraint violation in Hibernate unidirectional ManyToMany mapping when removing elements from a List

I have a problem deleting an item from the list . This seems to be connected to the way hibernate is performing delete/update queries on the database . I have two tables box and msg and ...
0
votes
0answers
26 views

Compare sets of collections in Hibernate

I have a small DB of documents. Each document can have a list of several entities. I'd like to create a query where I get the documents that have ALL the entities specified in a collection that I pass ...
0
votes
0answers
59 views

inheritance in hibernate select query

I'm using HQL to retrieve a list of A but the result is null. my classes are like below: @Entity public class A { private Long dbId; List<B> bList = new ArrayList<B>(); } @Entity ...
0
votes
2answers
183 views

Hibernate: Found two representations of same collection

I have a Spring MVC project, with Hibernate annotation entity mapping. Up until now the database was created alright, saving new objects went on without problems. Until I added a new entity class. ...
0
votes
2answers
210 views

Hibernate JPA not inserting rows in collection table for null values

I have tried with List and Map, but I cannot figure out how to force Hibernate 3.6.4 to persist null values in those collections. This is what I've tried: @ElementCollection(fetch=FetchType.EAGER) ...
3
votes
1answer
115 views

Selecting collections in HQL

HQL noob here, really struggling with this one. Lets say I have the following three classes: public class A { int id; B b; } public class B { int id; Set<C> c; } public class C { int id; ...
0
votes
0answers
154 views

Criteria API join a lazy Collection

I have the following setup @Entity @Table(name = "Product") public class Product implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private int id; ...
0
votes
1answer
40 views

Hibernate collection set column as index

I looked into the documentation (hibernate 4.1) . And I'm kind of confuse, I wish to be able to use the annotation @OrderColumn(name="orders_index") in my set Collection (for design purpose). Right ...
0
votes
1answer
40 views

Hibernate removal - Set replacement

I am removing Hibernate for a certain portion of our larger application where we have been seeing database contention and deadlocks that could never be isolated or recreated consistently. ...
3
votes
2answers
191 views

How to write HIbernate Criteria for a query with subselects

I have two entities Issue and Issue_Tracker. I am using hibernate 3.6 and one to many association. Issue.java public class Issue implements Serializable { private Integer issue_id; ...
2
votes
1answer
41 views

Re-ordering an item within a list in a hibernate many-many association

I have two entities Person and Preference. There is a many-many relationship between the two. The person and preference relationships are stored in a mapping table CREATE TABLE `person_2_preference` ...
0
votes
0answers
73 views

Hibernate MappingException converting to ElementCollection

I am having a problem refactoring my code to use the JPA ElementCollection instead of the deprecated CollectionOfElements. I am seeing the following stack trace: org.hibernate.MappingException: ...
0
votes
1answer
174 views

Hibernate-saving the modified child collection issuing insert statement before delete statement

I have an issue in my multi-tiered application where I have detached my objects from the Session. I have a user edit via the GUI the properties of a parent object along with adding, editing, and ...
0
votes
1answer
240 views

Hibernate Collection cache : How to use?

I have two entities Book and Author. Book has a collection of authors. I am using second level cache to keep the Book entity with its Authors. When debugging I can see there is putForExternalRead is ...
0
votes
1answer
67 views

How to check is ALL elements of a collection exists in another collection in HQL

i have a Course entity that have a mapped collection of Skill entities. now i want to check thru HQL if all the elements of course.skills collection exists in another collection which i will be ...
0
votes
0answers
26 views

hibernate tries to persist cascade entities even if they have been removed from collection soon after add

I would like to ask why the following is not working: Document doc = DocumentDAO.createDocument(); DocumentLine line = new DocumentLineImpl(); line.setProduct("uaua"); line.setPrice(new ...
0
votes
3answers
56 views

Why List<valueObject> giving Error in Hibernate?

In my Java Application creating Value Object(Java Bean) in that have one field @Entity @Table(name="EC_TIMETABLE") public class TimetableVO { ----//@id and some other column and variables ---- ...
0
votes
0answers
95 views

Hibernate does Not always do a SELECT on generated='always' properties

If Hibernate updates the parent table (Clients), Hibernate issues a select on the mdate column (which is good, mdate is updated by database triggers). But if Hibernate updates, inserts, or deletes in ...
0
votes
0answers
68 views

How can I get Hibernate to throw a StaleStateException if a collection has changed in the DB

I am working with a legacy database. Consider these tables: Clients and ClientClasses. Basically, a Clients object has a list of ClientClasses plus several other properties. I want to use optimistic ...
2
votes
1answer
125 views

Hibernate Criteria for map of basic type

I have a Hibernate mapping that looks something like this: class A { private Long id; private Map<C,String> someMap; ... @Id @GeneratedValue(strategy=GenerationType.AUTO) ...
0
votes
1answer
93 views

Hibernate second level collection cache on new entity

Here's my scenario: I've a process that is spaned across 2 spring transactions (P=Required,I=Default). On T1 I instantiated an Entity A, which has an empty collection of B's. Both, A and B ...
1
vote
0answers
29 views

Not commiting after swap within a Collection with hibernate

Working with hibernate 4.1.7, I have a class with a Collection (attachments), defined in the mapping file as: <list lazy="false" table="news_attachment" name="attachments"> <cache ...
3
votes
2answers
316 views

Hibernate: Select entities where collection contains all of the specified valus

I need assistance with a tricky hibernate query problem. I have the following entities: public class Book { private String bookId; private String author; private String isbn; private ...
0
votes
2answers
248 views

hibernate parent-child children update wrong update order

I have a tree with parent-child relation implemented with @OneToMany and @ManyToOne annotations. Every child has @ManyToOne parent field, every parent has @OneToMany. Both children and parents are ...
0
votes
2answers
152 views

ScrollableResults into List reference

I have to convert Scrollable Results reference into List reference. Is it possible? When I tried to convert,i am getting exception as java.lang.ClassCastException: ...
0
votes
3answers
377 views

Hibernate JPA empty result with correct query

Hibernate retrieve returns empty list, while populated list is expected. Involving 2 objects, mapping done by annotations: @Entity @Table(name = "parent") @Cache(usage = ...
0
votes
1answer
99 views

hibernate ManyToMany Java List removal

I have something like this @Entity public class A implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Basic(optional = false) private Long id; @Basic(optional = ...
2
votes
0answers
147 views

How to query composite element of collection? (cannot create element join for a collection of non-entities)

I have a class Goods <class name="Goods"> ... <map name="names" lazy="false" fetch="join"> <key not-null="true" /> <map-key column="LANGUAGE_CODE" ...
1
vote
2answers
176 views

Best Practice to declare POJO in Hibernate

While going through Hibernate Mapping examples, I found, When a class contain Collection, somewhere it is declared as, class Role{ String roleName; Set<Permission> permissionName; } class ...
0
votes
0answers
18 views

nhibernate collections set or list for master details [duplicate]

Possible Duplicate: List vs Set vs Bag in NHibernate I am new to NHibernate so I am not sure what to use for collections. I have read about sets, lists ... but not sure. I have a order ...
1
vote
0answers
322 views

JPA @formula and Collection<?>

@Entity @Table(name = "Person") public class Person { @Id private Long id; private String firstName; private String lastName; @ManyToOne(fetch = FetchType.LAZY, cascade = ...
1
vote
2answers
385 views

Mapping a Collection of Enums to a single varchar column

In hibernate I need to map a Collection of Enums to a single varchar column (e.g. as a comma-separated list of enum values).
1
vote
1answer
167 views

Hibernate: Partial fetching of collection?

I would like to fetch only parts of the a collection using a hibernate criteria query. As an example lets say i have a Class object containing multiple Student objects. Now i would like to get a list ...
0
votes
1answer
645 views

Duplicate collection role mapping entity Hibernate, I don't know what is wrong

When I run the hibernate tools schema export on my project in eclipse I get the following error, it seems like its saying that I am mapping the same collection but I am not. Is there any solution to ...
0
votes
1answer
76 views

Mapping a map to the same table as its class in hibernate

I have a rather simple (I think) class that I want to map: <class name="parent" table="PARENT_TABLE"> <composite-id> <key-property name = "a" column = "A"/> ...
0
votes
0answers
76 views

Hibernate with Collection Update Error

I meet a problem about Updating hibernate item(Collection). I use JPA. First, I want to create an int array as a column. But it seems using List is better. So I define a List and I want to update the ...
0
votes
1answer
173 views

Hibernate: Collection does not repopulate after save of Many-to-Many join

I just need to figure out why my collection of Roles would not populate member properties after save (add). I have two tables, User and Role, and the join table UserRole. public class User implements ...
0
votes
2answers
798 views

Hibernate merge does not work with attribute as collection

I am new to Hibernate and try to persist an entity that contains a collection. I have my class User that contains an attribute that is a Set. class User{ @OneToMany(cascade = CascadeType.ALL, ...
0
votes
2answers
212 views

Hibernate: Bag - performance impact in the case of update or delete operations?

From "Apress - Beginning Hibernate From Novice to Professional" p. 161, where they explain the bag collection: If the elements lack a proper key, there will be a performance impact that will ...
0
votes
1answer
96 views

Hibernate: is it possible to fetch two fields with one join?

I have a class Subject which has two fields Collection<Ownership> ownershipFrom and Collection<Ownership> ownershipTo. The Ownership class has two fields, Subject owner and Subject owned ...
0
votes
0answers
150 views

Mapping multiple owning entities to a single owned entity in Hibernate

I'm having an issue with mapping multiple owning entities to a single owned entity. Kindly let me know what I may be doing wrong. I have the following tables in my DB CREATE TABLE PERSON( id INTEGER ...
1
vote
2answers
2k views

spring, hibernate: failed to lazily initialize a collection

I have a problem with lazy initialisation. I can't find a solution. Exception: [pool-1-thread-12] ERROR:12:20:14.840 o.h.LazyInitializationException - failed to lazily initialize a collection of ...
0
votes
0answers
110 views

hibernate mapping list of entities

My tricky setup is a s follows: I have an entity with a property List<Vehicle> cars; Now Vehicle is an interface with several inheritors, and only some of them are entities and the rest I ...
0
votes
0answers
147 views

Does hibernate merge handle differences in collections?

When merging a detached object, how does hibernate handle collections? I know with plain objects merge will simply copy the state into the object in hibernates session, but what happens if collections ...
0
votes
1answer
113 views

Hibernate complex collection mapping trouble

I have entities with complex mappings which I fail to annotate right. Here are the entities: @Entity @Table(name = "bank") class Bank { @Column(name = "type") int type ...

1 2 3