java spring4.0如何设置 singleton?
1 回答
幕布斯6054654
TA贡献1876条经验 获得超7个赞
Spring中管理的所有Bean默认都是singleton的
<bean id="command" class="fiona.apple.AsyncCommand" />
如果想将Bean配置成非单例的,可以通过配置scope来说明
<!-- a stateful bean deployed as a prototype (non-singleton) -->
<bean id="command" class="fiona.apple.AsyncCommand" scope="prototype"/>
这样每次获取AsyncCommand对象是都会创建一个新的对象
- 1 回答
- 0 关注
- 570 浏览
添加回答
举报
0/150
提交
取消