gpt4 book ai didi

java - 无法将 SessionFactory[null] Autowiring 到 @Transactional bean 中

转载 作者:太空宇宙 更新时间:2023-11-04 14:12:59 24 4
gpt4 key购买 nike

我在将 Hibernate SessionFactory bean Autowiring 到我的服务中时遇到了非常奇怪的问题。

我能够在 Spring Context 对象中找到 SessionFactory bean。所以创建这样的 bean 没有问题。但是当它标有 @Transactional 注释时,我无法将此 bean Autowiring 到我的服务中。工厂字段为 null。一旦我删除这个注释 - 一切都很好。

服务等级:

@Service
@Transactional
public class ExampleRunner implements Runnable{

@Autowired
SessionFactory sessionFactory;
...
}

applicationContext.xml:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

<context:property-placeholder location="classpath:application.properties"
ignore-resource-not-found="true" />

<context:component-scan base-package="org.edu" />
<context:annotation-config />

<bean id="dataSource"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName"
value="${jdbc.driverClassName:org.hsqldb.jdbcDriver}" />
<property name="url" value="${jdbc.url:jdbc:hsqldb:mem:myAppDb}" />
<property name="username" value="${jdbc.username:sa}" />
<property name="password" value="$jdbc.password:}" />
</bean>

<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan" value="org.edu" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
${hibernate.dialect:org.hibernate.dialect.HSQLDialect}
</prop>
<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto:create-drop}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql:true}</prop>
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
</bean>

<tx:annotation-driven transaction-manager="txManager"
proxy-target-class="true" />

<bean id="txManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>

用法:

public static void main(String[] args) {
Runnable runner = new ClassPathXmlApplicationContext("applicationContext.xml").getBean(ExampleRunner.class);
runner.run();
}

似乎当我将@Transactional作为类级别注释时,Spring创建CGLib代理bean,其中SessionFactory字段为null。但是,当我使用 @Transational 作为方法级注释时,一切正常。

所以我只是想了解这种行为。我从 Spring 文档中错过了什么?

我使用 Spring 4.1.4.RELEASE。

最佳答案

我得到了你的错误,实际上为什么你在这里遇到问题,因为你不允许容器为你自动连接bean,因为你使用java Main方法它不会自动连接bean,这就是你收到错误的原因。

关于java - 无法将 SessionFactory[null] Autowiring 到 @Transactional bean 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28067883/

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