自动装配工厂创建的实例的弹簧方式是什么?

时间:2011-07-06 12:52:04

标签: java spring autowired

我有一个控制器,它应该创建版本依赖实例(目前尚未实现)。

@Controller
public class ReportController {

    @Autowired
    private ReportCompFactory       reportCompFactory;

         public ModelAndView getReport() {
            I_Report report = reportCompFactory.getObject();
                      ^^^^^<- no autowiring in this instance 
         }
     ...
}

工厂看起来像这样:

@Component
public class ReportCompFactory implements FactoryBean<I_Report> {

    @Override
    public I_Report getObject() throws BeansException {
        return new ReportComp();
    }

    @Override
    public Class<?> getObjectType() {
        return I_Report.class;
    }

    @Override
    public boolean isSingleton() {
        return false;
    }
}

未设置创建的实例字段(@Autowired annotated)。 我该怎么办,FactoryBean是实现的正确接口吗?

我更喜欢不涉及xml配置的解决方案。

组件本身:

    ReportComp implements I_Report {

        @Autowired
        private ReportDao           reportDao;
                                     ^^^^^^^<- not set after creation
    ...
    }

}

1 个答案:

答案 0 :(得分:8)

如果您创建对象,Spring不会执行自动装配。这里有几个选项

  • 将bean定义为范围prototype - 这将使工厂变得多余(这适用于您只想在工厂中实例化的情况)
  • 在工厂中注入ReportDao,并通过设置器将其设置为ReportComp
  • 在工厂中注入ApplicationContext并执行ctx.getAutowireCapableBeanFactory().autowireBean(instance)