我有下一种情况:
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,这对我来说是个问题。我可以在不使用克隆方法的情况下从弹簧配置中做到这一点吗?谢谢。