[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: DEPLOYMENTS MISSING DEPENDENCIES: UNRESOLVED Demands 'pe

NSchweig do-not-reply at jboss.com
Thu Jul 23 10:47:51 EDT 2009


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




More information about the jboss-user mailing list