我面临的问题是,如果我从config中删除component-scan标记,则@Autowired注释将不再起作用(在所有使用该注释的Java类中)

<?xml version="1.0" encoding="UTF-8"?>
<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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

  <context:component-scan base-package="efco.auth" />

here are some beans...

efco.auth包中只有一个类,而该类与以下类EfcoBasketLogic没有关系。

和一个使用@Autowired的类:
package efco.logic;
    public class EfcoBasketLogic extends BasketLogicImpl {

        @Autowired
        private EfcoErpService erpService;

这个Bean是在另一个spring配置文件中定义的:
<bean id="BasketLogic" class="efco.logic.EfcoBasketLogic">
    <property name="documentLogic" ref="DocumentLogic" />
    <property name="stateAccess" ref="StateAccess" />
    <property name="contextAccess" ref="ContextAccess" />
  </bean>

如您所见,未定义erpService。其他三个属性在BasketLogicImpl上并具有 setter 。

我做错了什么?

最佳答案

正如Tomasz所说,您需要<context:annotation-config/>才能使@Autowired工作。当您拥有<context:component-scan/>时,它将为您隐式包括annotation-config

10-08 15:10