Spring 3.1, Hibernate 4, SessionFactory
这是有效的:
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
...
但是升级到上述版本会破坏它。使用Spring 3.1.Release和Hibernate 4.0.0.FINAL创建SessionFactory Bean的正确方法是什么?
部署时的错误是:
nested exception is java.lang.NoClassDefFoundError: Lorg/hibernate/cache/CacheProvider;
编辑
添加了我自己的答案,为我修复了它。