-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: embedded annotation inside an embeddable class cause error
PostPosted: Fri Oct 30, 2009 5:53 am 
Newbie

Joined: Fri Jul 03, 2009 1:32 am
Posts: 7
Hi


I am using @CollectionOfElements inside a User class to map a list of roles.
My code is
Code:
@Entity
@Table(name="user")
public class User {
   @Id
   @GeneratedValue(strategy=GenerationType.IDENTITY)
   @Column(name="USER_ID")
   private int userId;
        @CollectionOfElements
   @JoinTable(
            name="role",
            joinColumns = @JoinColumn(name="USER_ID")
       )
   private List<Role> roles;

}

Inside my Role class there is another embedded object and it is mapped as
Code:
@Embeddable
@Table(name="role")
public class Role {
@Embedded
@Target(CorpEntityImpl.class)
@AssociationOverrides( {
   @AssociationOverride(name="institute", joinColumns = @JoinColumn (name="ORG_ID") )
   } )
   private IEntity entity;

}

But I got an exception java.util.ConcurrentModificationException

Can I use embedded mapping inside an embeddable class?

Thanks In Advance
Scientia


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.