如果方法是事务性的,则Spring无法实例化bean

时间:2016-03-13 18:16:00

标签: java spring transactions autowired spring-bean

我有以下界面及其具体实现

0

如果使用事务性注释进行注释,则会出现以下错误

List<List<String>> groupedWords = Lists.partition(words, 5);

没有事务性注释它工作正常。有人可以告诉我它为什么不用事务性注释启动。

2 个答案:

答案 0 :(得分:2)

@YairHarel:是的,我在另一个bean中连接ConcereteReportGenerator。如果我按类加载bean(如下所述),那么如果带有注释的具体方法是事务性的话,则会失败:

applicationContext.getBean(ConcereteReportGenerator.class)

但是当我将其更改为按名称加载并将类型转换为接口( ReportGenerator )时,其工作正常

(ReportGenerator) applicationContext.getBean("concereteReportGenerator") 

以下博客解释得非常好。如果有人在寻找细节,请参阅第5点

http://www.baeldung.com/spring-nosuchbeandefinitionexception

答案 1 :(得分:1)

您似乎错过了Transaction Manager的bean定义,或者没有将其设置为annotation-driven

以下是在应用程序上下文中创建事务管理器bean的方法:

<tx:annotation-driven/>

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="${jdbc.driverClassName}" />
    <property name="url" value="${jdbc.url}" />
    <property name="username" value="${jdbc.username}" />
    <property name="password" value="${jdbc.password}" />
</bean>

<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
</bean>