gpt4 book ai didi

spring - 使用 current_session_context_class 属性 hibernate 3 hibernate 4

转载 作者:IT老高 更新时间:2023-10-28 13:49:57 37 4
gpt4 key购买 nike

我有一个 Spring 和 Hibernate3 的应用程序在生产中运行良好。以下是 Spring 的 applicationContext.xml 中 session 工厂的配置

       <bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingDirectoryLocations">
<list>
<value>classpath:/hibernate</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect
</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.use_sql_comments">true</prop>
<prop key="hibernate.max_fetch_depth">2</prop>
<prop key="hibernate.autocommit">false</prop>
<prop key="hibernate.current_session_context_class ">thread</prop>
<prop key="hibernate.generate_statistics">true</prop>
<prop key="hibernate.jdbc.batch_size">20</prop>
</props>
</property>
</bean>

<bean id="txManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<!-- the transactional advice (what 'happens'; see the <aop:advisor/> bean
below) -->
<tx:advice id="txAdvice" transaction-manager="txManager">
<!-- the transactional semantics... -->
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" />
<tx:method name="get*" propagation="SUPPORTS" read-only="true" />
<tx:method name="count*" propagation="SUPPORTS" read-only="true" />
<tx:method name="validate*" propagation="SUPPORTS"
read-only="true" />
<tx:method name="find*" propagation="SUPPORTS" read-only="true" />
<tx:method name="login" propagation="SUPPORTS" read-only="true" />
</tx:attributes>
</tx:advice>

<!-- ensure that the above transactional advice runs for any execution of
an operation defined by the service interfaces -->
<aop:config>
<aop:pointcut id="projectServiceOperation"
expression="execution(* com.service.project.IProjectService.*(..))" />
<aop:advisor advice-ref="txAdvice" pointcut-ref="projectServiceOperation" />
</aop:config>

它在生产中运行良好。

现在我们正在迁移到 Hibernate4 的另一个项目。我们复制了相同的配置,除了使用 Hibernate 4 的 SessionFactory、TransacionManager 等。org.springframework.orm.hibernate4.* 包。但是它开始给出异常说“如果没有事件的交易,保存是无效的”。搜索了一下,好像很多人都遇到了问题,有几个人建议不要使用

        <prop key="hibernate.current_session_context_class ">thread</prop>

属性(property),它的工作。它也对我有用。我可以从帖子中收集到的所有信息都与上下文 session 和干扰 Spring session 管理策略的线程策略有关。但是我找不到任何具体的答案。
另外,为什么它适用于 Hibernate3 而不是 Hibernate4。有什么区别和改变了什么?其他所有配置都相同。我没有使用@Transactional,而是使用老式 XML 方式。

谁能指出我对 Hibernate3 和 Hibernate4 之间这种行为差异的明确解释?

最佳答案

这取决于 spring 的版本,但通常必须避免在使用 Spring 时弄乱该属性(除非您使用 JTA 进行事务,否则您需要配置它)。

从 Hibernate 3.1 开始,有一种称为上下文 session 的东西,为此 hibernate 提供了 CurrentSessionContext 接口(interface)。有几种实现方式(threadThreadLocalSessionContext 的缩写)。 Spring有自己的实现这个接口(interface)的SpringSessionContext类。

默认情况下,Spring 将属性设置为 CurrentSessionContext 的 Springs 实现,当将其设置为其他内容(除 JTA 之外)时,这将破坏 springs 管理 hibernate session 的能力(以及事务)。

现在,在旧版本的 spring 中(我假设您还升级了 Spring 以便能够使用 hibernate)与 hibernate 3 相结合,在获取 session 方面存在一些其他技巧(由于与旧 3.x 版本的向后兼容 hibernate )。这使得 Spring 不再依赖该属性的值。 (Spring为SessionFactory创建了一个代理,基本上拦截了getSession方法来管理 session 。

关于spring - 使用 current_session_context_class 属性 hibernate 3 hibernate 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19875485/

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