Tagged Questions

2
votes
0answers
929 views

Can not set java.lang.Integer field id to org.hibernate.id.IdentifierGeneratorHelper

I need to store some data in a MySQL-database using Jpa 2/Hibernate 3.5.1. For legacy reasons the table I want to store data in has a compound primary key. The first part of the primary key is of type ...
1
vote
1answer
5k views

JPA - many to many relationship of a table with a compound-key with itself

I would like to create a many to many relationship of a table (RoutePlace) with itself using JPA anotations. The singularity of the table I want to join with itself is that it has a compound-key. ...
0
votes
0answers
21 views

Advanced JPA Mapping with Compound keys - OneToMany relationship

I am using JPA 1.0 and have following tables, namely, Type, Guide and Address (names simplified for clarity and highlighted in bold) It is a scenario, where in relationships between 3 tables is built ...
0
votes
1answer
104 views

Joining tables with Compound Keys in JPA/Hibernate

Okay, our DB team has come up with the following structure. I cannot change it: Report has Reference Number (REF_NR) as its PID plus some data about the report, report date and so on Property ...
0
votes
2answers
705 views

JPA Compound key with @EmbeddedId

In a legacy database, I have three tables: Users, Workgroups, and UsersWorkgroup. UsersWorkgroup stores what role a user has in a workgroup. Here are the relevant code snippets: @Entity @Table(name = ...