单利模式(Spring默认机制)
<bean id="user2" class="User" c:age="18" c:name="YanAemons" scope="singleton"/>
原型模型:每次从容器中get的时候,都会产生一个新对象
<bean id="accountService" class="User" scope="prototype"/>
其余的request,session,application只在Web开发中使用