我需要帮助
javax.persistence.PersistenceException: Hibernate cannot unwrap interface java.sql.Connection
我需要拆开连接。这是从glassfish到JBoss eap 7的迁移。我不知道问题出在哪里。JBoss不接受吗?还有另一种方法可以解开包装吗?
我读了很多有关用展开连接的内容Session
,但我的IDE表示Session
未找到。
我使用JBoss Eap 7和Hibernate 2.1。
Jboss EAP7支持Hibernate 5.x,不支持Hibernate2.x。使用与特定JBoss EAP发行版捆绑在一起的Hibernate版本。
entityManager.getTransaction().begin(); java.sql.Connection connection = entityManager.unwrap(java.sql.Connection.class); ... entityManager.getTransaction().commit();
Session hibernateSession = entityManager.unwrap(Session.class); hibernateSession.doWork(new org.hibernate.jdbc.Work() { @Override public void execute(Connection connection) throws SQLException { // do whatever you need to do with the connection } });
参见此处:http : //wiki.eclipse.org/EclipseLink/Examples/JPA/EMAPI#Getting_a_JDBC_Connection_from_an_EntityManager