java.lang.ClassNotFoundException: org.hibernate.engine.SessionFactoryImplementor

后端 未结 1 1540
心在旅途
心在旅途 2020-12-31 01:27

i am trying to migrate to hibernate 4.1.0.Final with spring 3.1.1.RELEASE and following is my configuration for hibernate:

相关标签:
1条回答
  • 2020-12-31 02:12

    Try using the org.springframework.orm.hibernate4.HibernateTransactionManager

        <bean id="transactionManager"
            class="org.springframework.orm.hibernate4.HibernateTransactionManager">
            <property name="dataSource" ref="dataSource" />
            <property name="sessionFactory" ref="sessionFactory" />
        </bean>
    
    0 讨论(0)
提交回复
热议问题