gpt4 book ai didi

java - Hibernate SessionFactory 到 Spring

转载 作者:行者123 更新时间:2023-11-30 04:53:52 25 4
gpt4 key购买 nike

我正在使用 Hibernate3 和 Spring 3。我正在尝试使用 Spring 启动 hibernate 事务。下面是我的配置

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<tx:annotation-driven transaction-manager="transactionManager" />

运行应用程序时出现以下错误。

HibernateException: get is not valid without active transaction
at org.hibernate.context.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:341)

我在 hibernate 配置 xml 中有以下行

<property name="hibernate.current_session_context_class">thread</property>

使用hibernate事务的代码是:

SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();
Session session = sessionFactory.getCurrentSession();
Book book = (Book)session.get(Book.class, id);

这可能有什么问题吗? current_session_context_class 的值是不是 thread 以外的值?

最佳答案

问题出在线上

SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();

看来,当你使用Spring事务管理时,你需要使用你在applicationContext.xml中配置的sessionFactory(使用依赖注入(inject))。

下面的代码解决了这个问题。

private SessionFactory sessionFactory;
public void setSessionFactory(SessionFactory sessionFactory)
{
this.sessionFactory = sessionFactory;
}

在applicationContext.xml中:

<bean id="BookService" class="hibernate.BookServiceImpl">
<property name="sessionFactory" ref="sessionFactory" />
</bean>

关于java - Hibernate SessionFactory 到 Spring,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9188132/

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