The hibernate-onetomany tag has no wiki summary.
5
votes
1answer
6k 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 ...
3
votes
1answer
2k views
inverse=true in JPA annotations
In my application I use JPA 2.0 with hibernate as the persistence provider. I have a OneToMany relationship between two entities (using a @JoinColumn and not @JoinTable). I wanted to know how could I ...
2
votes
0answers
748 views
HIbernate - “A Foreign Key referring <table1> from <table2> has the wrong number of column. Should be 2” error
I've been searching for the solution to this question for a while now. I have found a few threads talking about many-to-many relationships causing this issue, but I don't think that applies to my ...
1
vote
0answers
248 views
Hibernate One to many
As per hibernate documentation:
To map a bidirectional one to many, with the one-to-many side as the owning side, you have to remove the mappedBy element and set the many to one @JoinColumn as ...
1
vote
1answer
175 views
Hibernate: How do I write the HQL for getting records of an entity without records for its identifying relation
I have Hibernate Objects defined as
Class SomeText{
private Long textId;
private Set<Tag> Tags = new HashSet<Tag>();
@ManyToMany(cascade={CascadeType.PERSIST,CascadeType.MERGE })
...
1
vote
1answer
434 views
Hibernate : OneToMany mapping not based on PK?
I have 2 entities/tables.
One is a proper entity, let's call it data. It has a number of fields containing so-called "multilingual codes".
The second table, code, contains the multilingual values ...
1
vote
1answer
427 views
CascadeType problem in One to Many Relation
I have two classes which have a Unidirectional One to Many relation with each other.
public class Offer{
...
@OneToMany(cascade=CascadeType.ALL)
@JoinTable(name = "Offer_Fields",
...
1
vote
2answers
439 views
Hibernate performance issue with OneToMany / nullable relationship
We use @OneToMany for our Parent->Child->Child->Child DB relationship:
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "THE_ID", nullable = false )
private List<ChildClass> children = ...
0
votes
0answers
22 views
Hibernate Cascade operation on OneToMany relation gives update query
@Entity
@Table(name="table1")
public class Parent{
@Id
@Column(name="Parentid")
private String Parentid;
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.LAZY)
...
0
votes
3answers
78 views
Hibernate @OneToMany relationship mapping
I am trying to design some kind of user to user relationship, such as "user A follows user B" and "User A wants to be User B's friend".
I have a User class, and the way it is designed looks like ...
0
votes
1answer
196 views
one-to-many detached Criteria parent table fetch based on child table
i have one problem in one-to-many mapping using hibernate.
i have 2 classes, Person and Address. Person is mapped by Address ( one-to-many)
i want get all Person where Address = "xxxx";. how to ...
0
votes
1answer
37 views
one-to-many bidirection performance issue
i have one doubt, that is when we create one-to-many as bidirectional. we will put one parent class reference in child class.
see the code.
Person.java
@Entity
@Table(name="PERSON")
public class ...
0
votes
1answer
53 views
Hibernate: map last row of a @OneToMany relation
I have a relation between element and its names. All historical names as well as the current one are located in table "element_name" that has field "created". The row last created is the current name ...
0
votes
1answer
128 views
Spring Roo Master/Detail & @OneToMany
In reference to Problem with @OneToMany annotation with Spring Roo, the <field:select... solution works well for create & update.jspx. Any idea how to get this to work for show.jspx?
0
votes
0answers
143 views
left outer join in microsoft sql server
Please explain the behaviour. I am following struts2 and hibernate5.0 and i am not using any annotations.
I have two tables table A and table B
Table A has columns id , model, comp, class, location , ...
0
votes
3answers
534 views
Hibernate inverse=''true" and problems when getting one-to-many
I am trying to use the following mapping :
<class name="Category" table="CATEGORY" lazy="false">
<id name="id" type="java.lang.Long" >
<column name="ID" />
...
0
votes
2answers
361 views
Hibernate - OneToMany - Several Columns
I have those 2 tables Teacher and Contact, a teacher can have x Contacts
SO here we are looking at a @OneToMany association.
Tables Structure:
User [userid, username, email,...]
Contact [contactid, ...
0
votes
1answer
1k views
Hibernate: joining with one of the keys of a multi-keyed table
I've got a table Category and a table TranslatableText. The category is like this
create table Category (
id int not null,
parent_id int default 0,
TranslatableDescriptionId int default 1,
...
0
votes
0answers
338 views
Grails AddTo in for loop
I am facing a problem due to that i'm newbie to grails
i'm doing a website for reading stories and my goal now is to do save the content of the story into several pages to get a list and then ...
0
votes
2answers
175 views
Lost with hibernate - OneToMany resulting in the one being pulled back many times
I have this DB design:
CREATE TABLE report (
ID MEDIUMINT PRIMARY KEY NOT NULL AUTO_INCREMENT,
user MEDIUMINT NOT NULL,
created TIMESTAMP NOT NULL,
state INT ...
0
votes
1answer
176 views
why when I delete a parent on a one to many relationship on grails the beforeInsert event is called on the child?
I have a one to many relationship and when I try to delete a parent that haves more than one child the berforeInsert event gets called on the frst child. I have some code in this event that I mean to ...
0
votes
1answer
152 views
Hibernate mapping, on a unmapped class
I' ve got 2 tables... Challenge and ChallengeYear, ChallengeYear is only to create a list of years in challenge.
I only want to make Challenge an entity, containing a list of List years. Is this ...