0
votes
1answer
422 views

Hibernate: composite-id with key-many-to-one generating java.lang.stackoverflow error

I've been trying to map the following tables into Hibernate with hbm files: CREATE TABLE additional_info ( info_id SMALLINT, book_id INT, desc VARCHAR(32) NULL, ...
1
vote
1answer
68 views

update a property of many-to-many

I'm having a many-to-many association between tables Student and Course, that are connected through StudentCourse. StudentCourse has an extra property called grade. In order to have access from a ...
0
votes
0answers
62 views

set relation hbm mapping

I have this situation: I have two classes like: class "model.A" with attributes: Integer id; Set<relationClass> rel; class "model.B" with attributes: Integer id; Set<relationClass> ...
0
votes
1answer
720 views

Joining Tables with Composite Primary Keys in Hibernate hbm files

I have two table to be joined using hbm file. The scenario is as follows Table B has a composite PK. Table B a1 (pk) a2 (pk) a3 (pk) foo bar ======== Table A has a primary key and is a ...
1
vote
1answer
144 views

Is it possible to define default object inside a SET element in HBM?

lets say I have mapping of a set within Parent hbm file: <set cascade="all" inverse="true" lazy="false" name="children"> <key column="parentChildId" foreign-key="fk_fk" ...
2
votes
1answer
2k views

Hibernate HBM Mapping Problem

I have the following three classes: public class Student { private Integer studentId; private StudentSchool studentSchool; private School school; public Integer getStudentId() { ...
7
votes
1answer
24k views

How can I map “insert='false' update='false'” on a composite-id key-property which is also used in a one-to-many FK?

I am working on a legacy code base with an existing DB schema. The existing code uses SQL and PL/SQL to execute queries on the DB. We have been tasked with making a small part of the project ...
0
votes
1answer
45 views

Need help with HQL query

I have a simple class, called Person, as follows: public class Person { private Integer id; private String name; private List<PersonState> states; ... } And each PersonState ...
2
votes
2answers
646 views

Legacy database structure Hibernate mapping issue

I am having trouble mapping the following database structure (shortened for brevity with just PKs/FKs and a few extra columns: Policy Policy_Id (PK) ... Risk Risk_Id (PK) ... Party Party_Id (PK) ...
3
votes
2answers
3k views

Set creation and update time with Hibernate in Xml mappings

I'm using Hibernate with Xml mappings. I have an entity that has two fields creationDate and updateDate of type timestamp, that have to be filled with the current UTC time when the entity is ...
5
votes
4answers
6k views

Adding an enum as a class property in HBM

I am trying to create a class in HBM file which contains an Enum as a field. The HBM is similar to this: <class name="a.b.c.myObject" table="OBJECT" > <property name="myEnum" ...