I am using JSF 2.1, EJB 3.1, JPA 2.0, Glassfish 3.1.1 and NetBeans 7.0.1.
For each entity class I created a separate Facade class, for example, UserFacade and AddressFacade using NetBeans tools. These two entities are not related to each other and are completely independent of each of other. However, I need to put them into database during one transaction and if one fails to be inserted then another one should also be rollbacked. How can I do that? As far as I know EJB container manages transactions itself and doesn't allow to manually control the transaction boundaries.