gpt4 book ai didi

java - Spring JPA + Hibernate(3.5,3.6,4.0 .....)集成

转载 作者:行者123 更新时间:2023-12-02 00:44:13 24 4
gpt4 key购买 nike

HibernateJpaVendorAdapter 用于将 Spring JPA 与 Hibernate 集成。例如,以下配置有效:

<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="trstore" />
<property name="dataSource" ref="dataSource" />
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">

<property name="databasePlatform" value="${hibernate.dialect}" />

</bean>
</property>

</bean>

但根据 Spring 的文档 HibernateJpaVendorAdapter 仅在 Hibernate 3.3 上进行了测试。

http://static.springsource.org/spring/docs/3.0.x/api/org/springframework/orm/jpa/vendor/HibernateJpaVendorAdapter.html

Spring 是否计划为最新的 Hibernate 版本(如 3.5、3.6 4.0 等)支持此(HibernateJpaVendorAdapter)?

如果没有,是否有关于如何将 Spring JPA 与 Hibernate 集成的替代建议?

最佳答案

您可以在 Spring JIRA 中提出有关此问题的问题。我怀疑文档没有更新。该适配器非常非常简单(检查 source code ),并且没有任何可能出错的地方。我们在生产中将它与 hibernate 3.5 一起使用,没有任何问题。

关于java - Spring JPA + Hibernate(3.5,3.6,4.0 .....)集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5426566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com