您好,我正在尝试将 Hibernate 3.6.3 应用程序迁移到 Hibernate 4,但出现以下错误:
Invalid property 'dataSource' of bean class
[org.springframework.orm.jpa.LocalEntityManagerFactoryBean]:
Bean property 'dataSource' is not writable or has an invalid
setter method. Does the parameter type of the setter match the
return type of the getter?
我看过这篇文章: integration JPA and SpringIOc
当我使用 LocalEntityManagerFactoryBean 时,我得到了上面提到的错误,但是当我使用 LocalContainerEntityManagerFactoryBean 时,我在创建我的 DAO bean 时得到了一个错误。
我认为这是 spring.orm 依赖配置的问题,但我不确定,因为我所做的所有依赖更改都不起作用。
我在哪里可以找到 Hibernate 4 迁移指南以适应我的 JPA、Hibernate 3.6.3 和 Spring 应用程序?