Zoeken…


Luie initialisatie in de configuratieklasse

@Configuration
// @Lazy - For all Beans to load lazily
public class AppConf {

    @Bean
    @Lazy
    public Demo demo() {
        return new Demo();
    }
}

Voor het scannen van componenten en automatische bedrading

@Component
@Lazy
public class Demo {
    ....
    ....
}

@Component
public class B {

    @Autowired
    @Lazy // If this is not here, Demo will still get eagerly instantiated to satisfy this request.
    private Demo demo;

    .......
 }

Voorbeeld van Lazy Init in het voorjaar

Met de @Lazy kunnen we de IOC-container instrueren om de initialisatie van een bean uit te stellen. Standaard worden bonen geïnstantieerd zodra de IOC-container is gemaakt. Met de @Lazy kunnen we dit instantiatieproces wijzigen.

lazy-init in het voorjaar is het kenmerk van bean tag. De waarden van lazy-init zijn waar en onwaar. Als lui-init waar is, wordt die bean geïnitialiseerd wanneer een verzoek tot bean wordt gedaan. Deze boon wordt niet geïnitialiseerd wanneer de veercontainer wordt geïnitialiseerd. Als lui-init vals is, wordt de boon geïnitialiseerd met de initialisatie van de veercontainer en dit is het standaardgedrag.

app-conf.xml

<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
 
<bean id="testA" class="com.concretepage.A"/>
<bean id="testB" class="com.concretepage.B" lazy-init="true"/>

A.java

package com.concretepage;
public class A {
public A(){
    System.out.println("Bean A is initialized");
   }
}

B.java

package com.concretepage;
public class B {
public B(){
    System.out.println("Bean B is initialized");
   }
} 

SpringTest.java

package com.concretepage;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringTest {
public static void main(String[] args) {
     ApplicationContext context = new ClassPathXmlApplicationContext("app-conf.xml");
     System.out.println("Feth bean B.");
     context.getBean("testB");
   }
}

uitgang

Bean A is initialized
Feth bean B.
Bean B is initialized


Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow