Tagged Questions
0
votes
1answer
46 views
JPA: Retrieve a list from secondary table using a composite key
well, here I have an example of what I'm trying to do with no success. Sorry for the dummy example. I have the following tables:
CREATE TABLE HOUSE(
HOUSE_NAME VARCHAR2(255),
OWNER_ID ...
-1
votes
1answer
100 views
Bi-directional OneToMany error: why does Hibernate think I am using a composite key?
I am getting this infamous error:
Foreign key (FK69848D5097EB6FB4:DOCUMENT_HISTORY [VOTERDOC_ID])) must
have same number of columns as the referenced primary key
(VOTER_DOCUMENT [VOTER_ID,ID])
...
0
votes
0answers
429 views
Seeing “referencedColumnNames(ID) … not mapped to a single property” error with a 1-M relationship after adding a composite key to the “1” side
I have an existing JPA entity ("Reference") with an ID column as its primary key that it inherits from a base class "BaseEntity" (using the @MappedSuperclass annotation on the superclass).
I also ...
1
vote
1answer
100 views
Hibernate/JPA - Is possible to use @Id and @EmbededId at same time?
i´m a little confused to add a business key in my entity mapping. All entities uses Long as a Id, but now i have to create a composite Id, my doubt is, can i mixed @Id and @EmbeddedId together or only ...
0
votes
1answer
132 views
JPA Composite Primary Key generating
I have simple entity class (irrelevant methods omitted):
@Entity
@Table(name="CONNECTIONS")
public class Connection implements Serializable {
@Id private Long id_track;
@Id private Long ...
1
vote
0answers
258 views
Hibernate; map parent to set of children with composite id
I couldn't find an exact answer to my problem in any other posts. I have parent and child objects (Sender and SenderConfig, resp.). The child has a composite primary key, consisting of the parent ...
2
votes
1answer
1k views
jpa call readonly composite table but getting “Exception Description: Missing descriptor for [CollectorInfo]”
In a Spring 3 app a controller is calling a JpaCollectorManager with calls a JpaCollectorInfoDao to get a list which is defined by a nativequery. The query calls 2 seperate tables which uses sql and ...
0
votes
2answers
310 views
Querying my JPA provider (Hibernate) for a collection of <Id,Name> of an entity
I have an entity which looks something like this:
Id (PK)
Name
Other business properties and associations...
I have the need for my DAL (JPA with hibernate as provider) to return a list of the ...
2
votes
2answers
2k views
How to create an entity with a composite primary key containing a generated value
Using Hibernate + annotations, I'm trying to do the following:
Two entities, Entity1 and Entity2.
Entity1 contains a simple generated value primary key.
Entity2 primary key is composed by a simple ...
