vote up 2 vote down star
1

Does anybody know why I get this warning when I turn off the auto-commit in JPA configuration file?

Using this setting :

<property name="hibernate.connection.autocommit" value="false"/>

generates this warning :

2009-08-04 09:54:10,621 [main] WARN org.hibernate.ejb.Ejb3Configuration - hibernate.connection.autocommit = false break the EJB3 specification

How would this break EJB3 specification?

flag

60% accept rate

2 Answers

vote up 1 vote down

From section 13.3.4 of the EJB 3.0 specification:

The enterprise bean’s business methods, message listener methods, business method interceptor methods,life cycle call back interceptor methods, or timeout callback method must not use any resource-manager specific transaction management methods that would interfere with the container’s demarcation of transaction boundaries. For example, the enterprise bean methods must not use the following methods of the java.sql.Connection interface:commit, setAutoCommit, and rollback; or the following methods of the javax.jms.Session interface:commit and rollback.

link|flag
I don't have any methods like that, the message occurs only if I set hibernate.connection.autocommit=true in JPA configuration. – adrian.tarau Nov 4 at 12:16
Hibernate probably calls that method itself. I'm guessing you don't need to specifiy autocommit=false – Miguel Ping Nov 13 at 14:35
vote up 0 vote down

Without knowing the context it could be a few things, but try this

link|flag
I don't think there is any special context, it just gives me the warning if I set hibernate.connection.autocommit=true – adrian.tarau Nov 4 at 12:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.