Spring中Bean的作用范围
1.单例模式(Spring默认机制):<bean id="accountService"class="com.foo.DefaultAccountService"scope="singleton"/>2.原型模式:每次从容器中get的时候都会创建一个新的对象<bean id="accountService"class="com.foo.DefaultAcc...
·
1.单例模式(Spring默认机制):
<bean id="accountService"
class="com.foo.DefaultAccountService"
scope="singleton"/>
2.原型模式:每次从容器中get的时候都会创建一个新的对象
<bean id="accountService"
class="com.foo.DefaultAccountService"
scope="prototype"/>
3.其余的request,session,application这些只在web开发中使用到
更多推荐
已为社区贡献2条内容
所有评论(0)