Hi,

thanks for your answer.
But was does this error really mean?

My Appointment.java 

@Entity
  | public class Appointment implements Serializable{
  |     @Id
  |     @GeneratedValue(strategy = GenerationType.AUTO)
  |     private Long id;
  | 
  |     @ManyToMany(fetch=FetchType.EAGER,mappedBy="appointments") 
  |     @IndexColumn(name="INDEX_COL")
  |     private List<AppointmentOffer> appointmentOffers= new 
ArrayList<AppointmentOffer>();
  | ...
  |     
  |     

My AppointmentOffer.java

@Entity
  | public class AppointmentOffer implements Serializable{
  |     
  |     @Id
  |     @GeneratedValue(strategy = GenerationType.AUTO)
  |     private Long id;
  |     
  |     @ManyToMany(fetch=FetchType.EAGER)
  |     @IndexColumn(name="INDEX_COL")
  |     private List<Appointment> appointments = new ArrayList<Appointment>();
  | 
  | ...

I can´t see an error here. Do you have any other suggestions where I can look 
for the error?

Thank you.
Nschweig


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245591#4245591

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245591

_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to