文章列表
使用Spring3.2.4集成Hibernate4.3.5时,出现以下异常
Causedby:java.lang.ClassNotFoundException:org.hibernate.service.jta.platform.spi.JtaPlatform
原因是在Hibernate4.3.X中,org.hibernate.service.jta.platform.spi.JtaPlatform类换成了:
org.hibernate.engine.transaction.jta.platform.spi.JtaPlatform;
解决方案:
Hibernate用4.2.X及以 ...