我将spring配置为使用自动检测一些DAOS
<context:component-scan base-package="com.mycomp.app" />
<tx:annotation-driven />.
@Repository("transactionDao")
public class TransactionDao {
...
}
现在我在上下文中手动配置另一个引用这个的bean。
<property name="schedulerContextAsMap">
<map>
<entry key="transactionDao" value-ref="transactionDao" />
</map>
</property>
现在春天的抱怨:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'transactionDao' is defined
是否可以在上下文中引用自动检测到的 bean?