java spring4.0如何設(shè)置 singleton?
1 回答

冉冉說
TA貢獻(xiàn)1877條經(jīng)驗 獲得超1個贊
Spring中管理的所有Bean默認(rèn)都是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對象是都會創(chuàng)建一個新的對象
- 1 回答
- 0 關(guān)注
- 692 瀏覽
添加回答
舉報
0/150
提交
取消