美文网首页spring 相关
spring  注解--scope

spring  注解--scope

作者: aix91 | 来源:发表于2018-12-31 11:19 被阅读0次

    scope用法

    确定生成bean的使用范围:

    • singleton:每次生成的bean都一样,在加载IOC容器时,就已经注入到容器里了
    • prototype:每次都新生成bean
    • request:web每次请求中的bean一样
    • session:web每个session中的bean一样
    public class MainConfig {
        @Scope(scopeName = "prototype")
        @Bean(name = {"person"})//容器中该bean的id默认是方法的名字
        public Person person1() {
            return new Person("test", 20);
        }
    }
    

    相关文章

      网友评论

        本文标题:spring  注解--scope

        本文链接:https://www.haomeiwen.com/subject/rgjilqtx.html