通过xml配置bean时,可以控制spring容器中保留几个实例
默认是单例的,如果想要实现每次从容器中取得实例,都是新实例,那么只需要配置
scope="prototype"
参数即可。
默认是:
scope="singleton"