Autowiring in Spring bean (@Component) created with new keyword

前端 未结 2 1416
小鲜肉
小鲜肉 2020-12-01 14:49

I have two spring beans as follows:

@Component(\"A\")
@Scope(\"prototype\")
public class A extends TimerTask {

    @Autowired
    private CampaignDao campai         


        
相关标签:
2条回答
  • 2020-12-01 15:37

    Because you are creating the object of class A yourself using new operator, you are not getting the autowired fields in that object and finding them null. Try to get the bean from spring container.

    Hope this helps you. Cheers.

    0 讨论(0)
  • 2020-12-01 15:41

    Yours component "A" is not created by Spring container, thus, dependencies are not injected. However, if you need to support some legacy code (as I understand from your question), you can use @Configurable annotation and build/compile time weaving:

    @Configurable(autowire = Autowire.BY_TYPE)
    public class A extends TimerTask {
      // (...)
    }
    

    Then, Spring will inject autowired dependencies to component A, no matter if it's instantiated by container itself, or if it's instantiated in some legacy code by new.

    For example, to set up build-time weaving with maven plugin you have to:

    1. Add <context:spring-configured/> to the Spring application context
    2. Configure Maven AspectJ plugin:

    in the build plugins section:

    <build>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>aspectj-maven-plugin</artifactId>
          <version>1.4</version>
          <configuration>
            <complianceLevel>1.6</complianceLevel>
            <encoding>UTF-8</encoding>
            <aspectLibraries>
              <aspectLibrary>
                <groupId>org.springframework</groupId>
                <artifactId>spring-aspects</artifactId>
              </aspectLibrary>
            </aspectLibraries>
            <!-- 
              Xlint set to warning alleviate some issues, such as SPR-6819. 
              Please consider it as optional.
              https://jira.springsource.org/browse/SPR-6819
            -->
            <Xlint>warning</Xlint>
          </configuration>
          <executions>
            <execution>
              <goals>
                <goal>compile</goal>
                <goal>test-compile</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
      </plugins>
    </build>
    

    ...and the dependencies section:

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aspects</artifactId>
      <version>3.1.1.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.6.11</version>
    </dependency>
    

    Please consult Spring reference for more details: http://static.springsource.org/spring/docs/current/spring-framework-reference/html/aop.html#aop-atconfigurable

    0 讨论(0)
提交回复
热议问题