1 spring bean的单例和多例
singleton
单例指的是,在需要该bean的地方,spring framework返回的是同一个值。
prototype
多例指的是,在需要该bean的地方,spring framework会返回一个新的对象。
2 spring bean默认是单例的