0
votes
1answer
79 views

Hibernate Bidirectional ManyToMany delete issue

In my project I have entities for users and companies: @Entity @Table(name = "users") public class UserDetails { @Id @GeneratedValue @Column(name = "user_id") private int id; ...
0
votes
0answers
279 views

Hibernate annotations many to many inverse relationship with eager fetch

Hi there, i have a model of user and role with many to many relationship as follows @Entity @Table(name = "USER") @Indexed @XmlRootElement public class User extends BaseObject ...
0
votes
1answer
88 views

Hibernate ManyToMany same JoinColumn name

I have two entity classes Activity and User. The relationships between them are: One Activity can have one or many User One User can belongs to one or many Activity So to achieve this I have ...
0
votes
0answers
27 views

hibernate associate an object with hierarchy of objects

I have a hierarchy of objects in hibernate. I have Customers and Customers have Locations. I would like to associate an Alert object with either a customer or location. How would I represent this ...
2
votes
1answer
303 views

Cannot save many-to-many relationship in Hibernate

I'm learning hibernate, but I can't save many-to-many relationships. I use hibernate 4.1.8 and spring 3.1.3 tables CREATE TABLE `t_role` ( `pk_role_id` bigint(20) NOT NULL AUTO_INCREMENT, `code` ...
0
votes
1answer
199 views

In Hibernate, how to create new relationship for many to many self join

I am trying to persist a a relationship between users and friends with a many to many self join. I am using the following method, but no relation is ever created in the database. The user passed a ...
1
vote
1answer
70 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 ...
2
votes
1answer
220 views

Hibernate mapping xml many-to-many array

I am currently working on some legacy code at the moment, so I am not able to change the database schema or domain model. The java objects look like this: class Person { private int prsnId; //get, ...
0
votes
1answer
117 views

Many to One or Many to Many mapping in ROLE-PERMISSION Scenario

I am new to Hibernate and just going through few samples After going through few samples, I am still confused on deciding the relation between tables. consider the scenarion, I have Role and ...
0
votes
1answer
296 views

How to handle Many-To-Many Relation with existed data in Hibernate

I had three table i.e,personalinfo,groups_designation,groups_desig_category personalinfo:pid(personal id) groups_designation:gid(group id) groups_desig_category:gid,pid Actually I have data in ...
2
votes
1answer
742 views

Many to many relationship in hibernate deleting the join table data?

i have many to many relationship in hibernate. DB tables are: events(event_id,name) speaker(speaker_id,name) event_speaker(event_id,speaker_id) event.hbm.xml <set name="speakers" ...
1
vote
1answer
124 views

How to query many to many relationship in NHibernate?

I am very new to NHibernate, and I would like to start development using this great technology. Below is my table relation ship: Table schemas http://dl.dropbox.com/u/33698629/Entities.JPG ...
5
votes
2answers
2k views

Hibernate Many-to-many association: left hand side collection contains elements, but right hand side collection is empty

I got a problem with a many to many association in my persistence layer. My scenario is the following: A user can has several roles and a role can have several user attached to it. During the tests I ...