Try this:
in the CustomerFacade:
public Orders save(Orders orders) {
| em.persist(orders);
| return orders;
| }
Then your persist code looks like
// make persistent
| customer = customersFacade.save(customer);
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3978668#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...