我需要在应用程序启动时初始化bean,所以我在applicationContext.xml中进行了初始化。但是现在我需要将该bean注入到在运行时创建的对象中。例:

Servlet

...
void doPost(...) {
    new Handler(request);
}
...


Handler

public class Handler {

    ProfileManager pm; // I need to inject this ???

    Handler(Request request) {
        handleRequest(request);
    }

    void handleRequest(Request request) {
        pm.getProfile(); // example
    }
}

最佳答案

更好的方法是也将Handler声明为Bean(假设已声明ProfileManager),然后如果在应用程序中使用批注,则在Handler Bean中自动将ProfileManager注释为@Autowired,或者在applicationContext中使用。 xml。
如何在xml中执行此操作的示例可能是:

<bean id="profileManager" class="pckg.ProfileManager" />
<bean id="handler" class="pckg.Handler" >
 <property name="pm" ref="profileManager" />
</bean>


如果您不希望将Handler注册为bean实例化,请从Spring的ApplicationContext中获取pm实例。 here显示了如何在Web应用程序中获取ApplicationContext的方法

关于java - Spring-如何将Bean注入(inject)在运行时创建多次的类中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6842477/

10-14 10:30