Questions regarding the implementation of one to many relations using Hibernate ORM framework
0
votes
0answers
25 views
Spring JPA with lists of the same entity type
This is now driving me insane, and no end of googling is helping me out; so I hope someone here can help :)
I have a class called ImpactAssessment. It has 2 lists of type SimpleListItem:
@Entity
...
0
votes
1answer
27 views
NHibernate HasMany List remains empty when querying
I've got a strange problem: Whenever I query an entity which has an IList, it remains empty. Querying the Language entity itself is possible... has this something to do with my composite key?
NHProf ...
0
votes
1answer
37 views
Using hibernate criteria in one to many mapping (Search header table with line table column as one of search criteria)
I have two classes InvoiceHeader and InvoiceLine with a one to many (One InvoiceHeader maps to multiple InvoiceLine) mapping between them.
class InvoiceHeader
{
private int id;
private String ...
0
votes
0answers
72 views
Hibernate @OneToMany Relationship Causes Infinite Loop Or Empty Entries in JSON Result
I have two entities, an entity "movie" and an entity "Clip"
each clip belongs to one movie and a movie can have multiple clips.
My code looks like:
Movie.java
@OneToMany(mappedBy = "movie", ...
-1
votes
1answer
18 views
fluent nhibarnate doesn't delete orpahns
I found some similar threads but all got my code as answer.
I am using One-to-Many relationship.
father mapping:
HasMany(x => ...
0
votes
1answer
114 views
Spring + Hibernate id issue while saving object with one-to-many mapping
I'm having a problem with Hibernate 4 and Spring 3. I'm also using BoneCP. I'm trying to save an Article with many Images, and that works well. However, when I try to get the ID of any Image it ...
0
votes
1answer
56 views
Should I update bidirectional relation also in Java?
Suppose I have User and Group entities and wish them to have 1 to many relationship between. I.e. each User belongs to one Group, while any Group can contain many Users.
Group entity:
@Entity
...
0
votes
2answers
59 views
Cannot delete child in one-to-many relationship
When I put inverse=true into set, nothing gets deleted. When I don't, and I remove MealIngredient from set, then Hibernate tries to set null, it fails and exception is thrown:
[SQLITE_CONSTRAINT] ...
1
vote
1answer
104 views
JPA, do not want insertable=false, updatable=false, workaround?
i am new to both stackoverflow and JPA so i will try to explain this the best i can.
In a entity i want to set the foreign key by giving the int value but also i want to set it by giving a object. ...
0
votes
0answers
62 views
3 level deep Hibernate Transaction doesn't Cascade until the root Entity when saved updated
I have a situation where I have 3 entities like this in HIBERNATE
public class Client extends AbstractEntity implements Serializable{
@OneToMany(fetch = FetchType.LAZY, cascade={CascadeType.ALL}, ...
0
votes
2answers
45 views
Is it possible for Hibernate to fetch two levels of sets with one select?
I have three entities:
@Entity
@Table(name="a")
class A {
@Id
Long id;
@OneToMany(fetch = FetchType.EAGER)
@JoinColumn(name = "a_id")
Set<B> bs;
// ... other fields
}
...
2
votes
1answer
289 views
JPA native query result returns duplicate child objects
I have a parent table and a child Table in my DB, and have a OneToMany mapping for them in their corresponding entity classes. The child table has a foreign key parent_id. I am using JPA 2 with ...
0
votes
1answer
71 views
@OneToMany relationship with non primary key Hibernate
I have one @Entity called Team as
@Entity
@Table(name="projects_participants")
public class Team {
@Id`enter code here`
@GeneratedValue(strategy = GenerationType.AUTO)
...
0
votes
2answers
376 views
Rather than child is deleting its updating ,when parent is deleted
My problem is when i delete the parent, child is not deleted but instead of deleting child ,child is updating.Parent table is Employee and child table is EmployeeProject there is one-to-many relation ...
0
votes
2answers
127 views
Hibernate: Child table having two different ManyToOne relationships
In the Spring/Hibernate/Java/Tomcat app I'm writing I have a OneToMany relationship between an Organization and its Contacts.
Organization 1:M Contact (has foreign key org_id)
In Organization I ...
0
votes
0answers
87 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
0answers
125 views
Hibernate maxResults with OneToMany Fetch counts children as result rows
I have a class Video that has a OneToMany annotation to another class Comment.
@OneToMany(fetch = FetchType.LAZY, mappedBy = "videoId", cascade = CascadeType.ALL, orphanRemoval = true)
@Sort(type = ...
0
votes
1answer
113 views
Hibernate OneToMany OrderBy messes up main query
I have a class Video that I'm querying for in my Hibernate and I am ordering the results by Order.desc("id").
The query works as expected. However, if I add a @OneToMany annotation in Video to include ...
1
vote
1answer
253 views
org.hibernate.AssertionFailure: null identifier with OneToMany/ManyToOne Relationship
I have a problem with a OneToMany/ManyToOne relationship:
Class Project:
@OneToMany(fetch = FetchType.EAGER,cascade = CascadeType.ALL,
orphanRemoval=true )
@JoinColumn(name="PROJECT_ID", ...
1
vote
1answer
53 views
why hibernate creates a join table for unidirectional OneToMany?
Why hibernate uses a join table for these classes?
@Entity
public class CompanyImpl {
@OneToMany
private Set<Flight> flights;
@Entity
public class Flight {
I don't want neither a ...
1
vote
1answer
925 views
One to many association - Join tables with non primary key column in JPA
I'm working on legacy system, need to read some of the info from database. Below are the table relationship
Vendor (vendorId - pk, vendorEid, name)
VendorContactBridge (bridgeId -pk, vendorEid, ...
1
vote
1answer
90 views
PostgreSQL exception when deleting object in one-to-many relationship using Hibernate
I have very simple schema - two tables in one-to-many relationship:
<hibernate-mapping package="my.app">
<class name="CorrelationKey" table="CORRELATION_KEYS">
<id ...
0
votes
1answer
3k views
TransientObjectException - object references an unsaved transient instance - save the transient instance before flushing
I've come across a few good possible answers to my questions, but this is regarding to an upgrade from Hibernate 3.4.0GA to Hibernate 4.1.8. So this used to work under the previous version and I've ...
0
votes
2answers
175 views
NHibernate CreateCriteria with Restrictions does not work as expected
The bellow given code sample is to retrieve all the active records.
session.CreateCriteria<VesselMasterData>()
.CreateAlias("BasicInfo", "bsInfo")
...
1
vote
3answers
268 views
Hibernate criteria for OneToMany/ManyToOne relationship
I have a OneToMany/ManyToOne relationship between two objects like:
public class Company {
private Long compid;
private String companyName;
@OneToMany(mappedBy = "company", cascade = ...
0
votes
2answers
258 views
hibernate jpa join two table with another table
I have two table A and B
Table A:
ID_A
name
table B
ID_B
name
I joined both by a third table C table with their primary key
table C
ID_C
ID_A
ID_B
I'd like to know this relationship in jpa ...
0
votes
1answer
83 views
Unable to persist OneToMany relationship in HIbernate 4
Having a problem getting some data persisted with hibernate
I declare two independent classes, License and MacAddress. MacAddress can exist in its own right, but it can also be linked to to a ...
0
votes
1answer
126 views
Am I need to use @Access=FIELD annotation with many-to-one relationship?
I have entities which are divided into categories. Each entity can belong to many categories, so I have one to many association.
Is it ORM-ed correctly below:
@OneToMany
@Access(AccessType.FIELD)
...
1
vote
3answers
134 views
Hibernate, many-to-one and delete
Say you have a unidirectional one-to-many association from class A to class B, like this:
public class A {
@OneToMany(cascade = CascadeType.ALL)
private List<B> myBs;
}
public class B ...
3
votes
1answer
148 views
Hibernate paginated OneToMany relationship
how can I map a one-to-many relationship in Hibernate where the many-side needs to be paginated? (i.e. you have hundreds or more related objects)
Using the OneToMany annotation (or its xml equivalent) ...
0
votes
0answers
472 views
Hibernate - getting org.hibernate.exception.ConstraintViolationException: Column 'parent_id' cannot be null
Trying to persist a Complex object (with one-to-many relation) and getting foreign key cannot be null. Here is the Hibernate mapptings
<hibernate-mapping>
<class name="com.dos.Parent" ...
0
votes
1answer
216 views
Spring callback when Entity exits @Transactional context?
Does Spring have any hooks to call a method on an entity or an entity listener for each entity at the exit of a transactional context?
We're using Spring and Hibernate to manage a bunch of entities ...
1
vote
1answer
76 views
How can I delete member of a collection without fetching it from a one-to-many association using hibernate criteria or hql?
I have a one-to-many association from Institution -> Course where
an institution can handle multiple courses. For this use case consider a course can only belong to one institution.
@Entity
...
0
votes
1answer
526 views
Issue while updating @OneToMany collection
I am stuck at a point where i am trying to update a @OneToMany mapping.
Problem:
I have 2 entities: Criteria and Tasks. A criteria can contain multiple tasks.
class Criteria {
...
0
votes
2answers
189 views
Hibernate: new or old record
I have a OneToMany connection between tables Result and ResultAux. I can retrieve a set of ResultAux objects from Result. After that I'm adding some ResultAux objects to set and using merge on each ...
0
votes
1answer
881 views
Hibernate configuration error - one to many relation using annotation
I have gone through many videos and tutorials explaining about how to configure one to many relation in hibernate using annotation mechanism. Still I am getting this error.
the error is :
...
1
vote
1answer
627 views
Hibernate. How to properly organize relation a one-to-many with annotations?
I am trying to make a simple example of Hibernate. I have two entities: User and Note. They have relation a one to many (one user can have a lot of notes). Please help me to correctly display these ...
0
votes
0answers
298 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
2k 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
873 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
116 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
190 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
555 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
3answers
2k 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" />
...
2
votes
0answers
1k 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 ...
7
votes
1answer
25k 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 ...
6
votes
1answer
7k views
inverse=true in JPA annotations
In my application I use JPA 2.0 with Hibernate as the persistence provider. I have a one-to-many relationship between two entities (using a @JoinColumn and not @JoinTable). I wanted to know how could ...
0
votes
2answers
956 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 ...
0
votes
1answer
3k 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,
...
1
vote
0answers
505 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 ...

