我将Hibernate SessionFactory bean自动装入我的服务中遇到了一个非常奇怪的问题。
我能够在Spring Context对象中找到SessionFactory bean。所以创建这样的bean没有问题。
但是当标记为@Transactional
注释时,我无法将此bean自动装入我的服务中。工厂字段为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。
答案 0 :(得分:0)
我收到你的错误实际上你为什么在这里遇到问题,因为你不允许容器为你自动连接bean,因为你使用java Main方法它不会自动连接bean,这就是你得到错误的原因。