ContactsBean
@Named(value = "contactsBean")
@SessionScoped
public class ContactsBean implements Serializable {
@EJB
ContactsFacade contactsEJB;
private List<Contacts> contacts = new ArrayList<Contacts>();
@Inject
DetailsBean detailsBean;
Details Bean
@Named(value = "detailsBean")
@RequestScoped
public class DetailsBean {
@EJB
ContactsFacade contactsEJB;
private Contacts detailsContact = new Contacts();
I can't do this. Whenever I called the EJB in details bean it throws EJB exception and this.
Bean Validation constraint(s) violated while executing Automatic Bean Validation on callback event:'prePersist'
Any ideas guys? Thanks
**UPDATE**
Ok so I found out it seems that using a requestScoped bean is causing this problem. Why is this?