In the a JDBC Connection Pool there’s a Transaction section which has a property called “Non Transactional Connection” and a check box next to the word “Enabled”. The caption to this property says, “Returns non-transactional connections”.
If the Enabled box is NOT checked off, what happens with respect to EJB’s that have methods annotated with @TransactionAttribute(TransactionAttribute.NOT_SUPPORTED) or .NEVER and whose injected EntityManager is associated with a Persistence units what is a JTA resources that uses this connection pool?
-Noah