Spring bean的作用域

bean的作用域 scope标签属性:

  • 【Spring bean的作用域】singleton单例模式

    每次取到的bean都是同一个对象。
  • prototype原型模式

    每次取到不同的对象。

    推荐阅读