bean的作用域
Bean Scope
1. The Singleton Scope 单例模式 (Spring默认机制)
单例模式
Only one instance is ever created…[创建的所有实例只有一个]无论用几个dao来拿最终都为一个
<bean class="org.example.pojo.Hello" id="hello" scope="singleton"/>
2. Prototype Scope 原型模式
每次从容器get的时候, 会产生一个新对象
<bean class="org.example.pojo.Hello" id="hello" scope="prototype"/>
占资源
- 其余的 request, session, application,这些个在web开发者使用~