我有下一个情况:
每次Connection manager
的一个对象和ConnectionServer
的新对象时,DataBean
都应该有
所以,我已经创建了这些bean并将其配置为spring xml。
<?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">
<bean id="dataBena" class="com.test.DataBean" scope="prototype"/>
<bean id="servCon" class="com.test.ServerCon"/>
<!--<bean id="test" class="com.test.Test"/>-->
<context:component-scan base-package="com.test"/>
</beans>
并为prototype
DataBean
在此之后我创建了名为Test
的简单util / component类@Component
public class Test {
@Autowired
private DataBean bean;
@Autowired
private ServerCon server;
public DataBean getBean() {
return bean.clone();
}
public ServerCon getServer() {
return server;
}
}
但是,每次调用getBean()方法我都在克隆这个bean,这对我来说是个问题。 我可以从spring配置执行此操作而不使用克隆方法吗? 谢谢。
答案 0 :(得分:33)
您正在寻找Spring中的lookup method功能。我们的想法是你提供一个这样的抽象方法:
@Component
public abstract class Test {
public abstract DataBean getBean();
}
告诉Spring它应该在运行时实现它:
<bean id="test" class="com.test.Test">
<lookup-method name="getBean" bean="dataBean"/>
</bean>
现在每次调用Test.getBean
时,您实际上都会调用Spring生成的方法。此方法会询问ApplicationContext
DataBean
实例。如果这个bean是prototype
- 作用域,那么每次调用它时都会得到新的实例。
我写了这个功能here。