Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

방카@Dev

[Spring]빈 생명주기 콜백 본문

BackEnd/Spring

[Spring]빈 생명주기 콜백

방카킴 2024. 6. 21. 00:03

*스프링 Bean의 이벤트 라이프사이클

스프링 컨테이너 생성 -> 스프링 빈 생성 -> 의존관계 주입 -> 초기화 콜백 ->사용 ->소멸전 콜백 ->스프링 종료

- 스프링은 의존관계 주입이 완료되면 스프링 빈에게 콜백 메서드를 통해서 초기화 시점을 알려주는 다양한 기능을 제공

- 스프링은 스프링 컨테이너가 종료되기 직전에 소멸 콜백 기능

- 목적 : 객체 생성과 초기화를 분리

- 스프링은 하단의 세가지 방법의 콜백 기능을 지원하며 그 중 @PostConstruct @PreDestroy 사용 권장

첫번째 방법. InitializingBean, DisposableBean 스프링 인터페이스 

package hello.core.lifecycle;

import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;

public class NetworkClient implements InitializingBean, DisposableBean {
    private String url;

    public NetworkClient(){
        System.out.println("생성자 호출, url = "+url);

    }

    public void setUrl(String url) {
        this.url = url;
    }

    //서비스 시작 시 호출
    public void connect(){
        System.out.println("connect: "+url);
    }

    public void call(String message){
        System.out.println("call: "+url+" message = "+message);
    }

    //서비스 종료 시 호출
    public void disconnect(){
        System.out.println("close "+url);
    }

    @Override
    public void afterPropertiesSet() throws Exception {  //의존관계 주입이 끝난 후
        System.out.println("NetworkClient.afterPropertiesSet");
        connect();
        call("초기화 연결 메시지");
    }

    @Override
    public void destroy() throws Exception { //빈이 종료될때
        System.out.println("NetworkClient.destroy");
        disconnect();
    }
}
public class BeanLifeCycleTest {
    @Test
    public void lifeCycleTest(){
        AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(LifeCycleConfig.class);
        NetworkClient client = ac.getBean(NetworkClient.class);
        ac.close();
    }

    @Configuration
    static class LifeCycleConfig{
        @Bean
        public NetworkClient networkClient(){
            NetworkClient networkClient = new NetworkClient();
            networkClient.setUrl("http://hello-spring.dev");
            return networkClient;
        }
    }
}

 

 

두번째 방법. 빈 초기화, 종료 메서드(@Bean의 initMethod, destroyMethod)

 

public class NetworkClient {
    private String url;

    public NetworkClient(){
        System.out.println("생성자 호출, url = "+url);

    }

    public void setUrl(String url) {
        this.url = url;
    }

    //서비스 시작 시 호출
    public void connect(){
        System.out.println("connect: "+url);
    }

    public void call(String message){
        System.out.println("call: "+url+" message = "+message);
    }

    //서비스 종료 시 호출
    public void disconnect(){
        System.out.println("close "+url);
    }


    public void init() {  //의존관계 주입이 끝난 후
        System.out.println("NetworkClient.init");
        connect();
        call("초기화 연결 메시지");
    }

    public void close() { //빈이 종료될때
        System.out.println("NetworkClient.close");
        disconnect();
    }
}
public class BeanLifeCycleTest {
    @Test
    public void lifeCycleTest(){
        AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(LifeCycleConfig.class);
        NetworkClient client = ac.getBean(NetworkClient.class);
        ac.close();
    }

    @Configuration
    static class LifeCycleConfig{
        @Bean(initMethod="init", destroyMethod = "close")
        public NetworkClient networkClient(){
            NetworkClient networkClient = new NetworkClient();
            networkClient.setUrl("http://hello-spring.dev");
            return networkClient;
        }
    }
}

세번째 방법. @PostConstruct, @PreDestroy

public class NetworkClient {
    private String url;

    public NetworkClient(){
        System.out.println("생성자 호출, url = "+url);

    }

    public void setUrl(String url) {
        this.url = url;
    }

    //서비스 시작 시 호출
    public void connect(){
        System.out.println("connect: "+url);
    }

    public void call(String message){
        System.out.println("call: "+url+" message = "+message);
    }

    //서비스 종료 시 호출
    public void disconnect(){
        System.out.println("close "+url);
    }

    @PostConstruct
    public void init() {  //의존관계 주입이 끝난 후
        System.out.println("NetworkClient.init");
        connect();
        call("초기화 연결 메시지");
    }

    @PreDestroy
    public void close() { //빈이 종료될때
        System.out.println("NetworkClient.close");
        disconnect();
    }
}
public class BeanLifeCycleTest {
    @Test
    public void lifeCycleTest(){
        AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(LifeCycleConfig.class);
        NetworkClient client = ac.getBean(NetworkClient.class);
        ac.close();
    }

    @Configuration
    static class LifeCycleConfig{
        @Bean
        public NetworkClient networkClient(){
            NetworkClient networkClient = new NetworkClient();
            networkClient.setUrl("http://hello-spring.dev");
            return networkClient;
        }
    }
}