This is an academic question; I have no broken code in relation to this. I just want to expand my understanding of what is happening under the hood.
The code pattern I have been using (copied from books and tutorials) in my JPA DAO for my typical JSF web applications is basically this:
public class someDAO {
@PersistenceContext protected EntityManager em;
@Resource private UserTransaction utx;
public void persist(Entity entity) {
try {
utx.begin();
em.persist(entity);
utx.commit();
} catch ( // gawd awful long list of possible exceptions )
// etc
So my questions are as follows:
Why are the EntityManager instance and the UserTransaction instance injected with annotations from two seemingly unrelated packages?
Why is the annotation @Resource and @PersistenceContext rather than @ManagedProperty or perhaps @Inject used?
How does the persist() method access and interact with the utx object? If I forget the utx.begin() call the entity manager knows about it and throws and exception. It must be finding the UserTransaction object in some magic way. Wouldn't it have been better architecture to define the interface like: em.persist(utx, entity)?
If utx is some sort of singleton -- is it possible to have more than one UserTransaction open at a time?
Much thanks for any discussion.