0

我有一个 java 命令行应用程序,它利用应用程序上下文文件中定义的 Bean。我可以使用ApplicationContextLoader从 main 方法调用的以下类将 Bean 注入到主类中:

public class ApplicationContextLoader {

    private ConfigurableApplicationContext applicationContext;

    public ConfigurableApplicationContext getApplicationContext() {
        return applicationContext;
    }

    protected void loadApplicationContext(String... configLocations) {
        applicationContext = new ClassPathXmlApplicationContext(configLocations);
        applicationContext.registerShutdownHook();
    }

    protected void injectDependencies(Object main) {
        getApplicationContext().getBeanFactory().autowireBeanProperties(main, AutowireCapableBeanFactory.AUTOWIRE_NO, false);
    }

    public void load(Object main, String... configLocations) {
        loadApplicationContext(configLocations);
        injectDependencies(main);
    }
}

public static void main(String[] args) throws IOException {
        DataGeneratorTestRunner dataGeneratorTestRunner = new DataGeneratorTestRunner();
        dataGeneratorTestRunner.launchTests(args, APPLICATION_CONTEXT);
        System.exit(0);
} 

public void launchTests(String[] args, String applicationContext) throws IOException{
            acl  = new ApplicationContextLoader();      
            acl.load(this, applicationContext);     
}

但是,当我尝试@Inject在我的应用程序(不是主类)中的其他类中使用注释时,我得到空指针异常。是否有替代/更简单的方法允许我在@Inject整个应用程序中使用注释来引用在我的应用程序上下文文件中定义的任何 Bean,而无需指定类名甚至使用上述 ApplicationContextLoader 类?

应用环境:

<bean id="currentState" class="com.company.integration.sim.State">
</bean>

    <bean id="customerSim" class="com.company.integration.sim.CustomerSim">
    </bean>

我按如下方式引用 Bean,它是空的:

public class CustomerSim {

@Inject private State currentState;
.
.
.
4

1 回答 1

0

您可以尝试使用 AutowiredAnnotationBeanPostProcessor

 protected void injectDependencies(Object main) {
    AutowiredAnnotationBeanPostProcessor bpp = new AutowiredAnnotationBeanPostProcessor();
    bpp.setBeanFactory(getApplicationContext());
    bpp.processInjection(main);
  }

我不确定您使用的方法是否应该有效。此外,如果您开发测试,请考虑使用Spring Test Context 框架

于 2013-08-28T17:40:05.503 回答