1. 程式人生 > >spring註解@lazy,bean懶載入

spring註解@lazy,bean懶載入

當使用@Scope註解的singleton屬性時,bean的例項會在IOC容器建立的時候被載入,但是如果在建立bean的時候加上@lazy註解,則bean的例項會在第一次使用的時候被建立。

    @Lazy
    @Scope(value = ConfigurableBeanFactory.SCOPE_SINGLETON)//singleton
    @Bean(name = "person")
    public Person person(){
        Person person = new Person();
        person.setName("lqf");
        person.setEmail("
[email protected]
"); return person; }