JUST WRITE

Bean LifeCycle 본문

Programing/Spring

Bean LifeCycle

천재보단범재 2021. 9. 29. 22:39

Bean LifeCycle

Bean LifeCycle

Spring Bean을 아래와 같은 일정한 LifeCycle을 가진다.

Spring Container 생성 -> Spring Bean 생성 -> DI 주입 -> 초기화 Callback -> Bean 사용 -> 소멸 전 Callback -> 소멸

Spring Container는 Spring Bean Factory로서 Bean들의 생성, 소멸 등 LifeCycle를 관리한다.

Spring에서는 Bean LifeCycle에서 Custom 할 수 있는 2가지 Callback Method를 제공한다.

  • Post-initalization call back methods
  • Pre-destruction call back methods

출처: https://howtodoinjava.com/spring-core/spring-bean-life-cycle/#2

LifeCycle Callback Methods

InitializingBean and DisposableBean

InitializingBean Interface는 Spring Container에서 Bean의 필요한 모든 속성을 세팅 후 초기화 작업을 한다.

DisposableBean Interface는 Spring Container가 destroy될때 호출된다.

package com.howtodoinjava.task;
 
import org.springframework.beans.factory.DisposableBean;
import org.springframework.beans.factory.InitializingBean;
 
public class DemoBean implements InitializingBean, DisposableBean 
{
    //Other bean attributes and methods 
     
    @Override
    public void afterPropertiesSet() throws Exception
    {
        //Bean initialization code
    }
     
    @Override
    public void destroy() throws Exception 
    {
        //Bean destruction code
    }
}

위 interface를 구현하는 것은 초기에 나온 방법이라 지금은 init-method 방식이 선호된다.

init() and destroy() methods

init와 destory Method은 아래 2가지 방식으로 적용할 수 있다.

  1. Bean별로 적용하는 방식
  2. Beans Context에 속한 Bean에 Global 하게 적용하는 방식

Local, Bean별로 적용

<beans>
    <bean id="demoBean" class="com.howtodoinjava.task.DemoBean"
                    init-method="customInit"
                    destroy-method="customDestroy"></bean>
</beans>

Global, Benas Context 적용

<!-- <beans> tag내 bean 적용 -->
<beans default-init-method="customInit" default-destroy-method="customDestroy"> 
 
        <bean id="demoBean" class="com.howtodoinjava.task.DemoBean"></bean>
 
</beans>

위처럼 Spring Container에 정의했으면, Bean에 해당 Method를 정의한다.

package com.howtodoinjava.task;
 
public class DemoBean 
{
    public void customInit() 
    {
        System.out.println("Method customInit() invoked...");
    }
 
    public void customDestroy() 
    {
        System.out.println("Method customDestroy() invoked...");
    }
}

@PostConstruct and @PreDestroy

Spring 2.5부터 이 Annotation 방식이 지원되었다.

@PostConstruct Method는 기본 Constructor로 Bean 생성 후 Bean이 반환되기 직전에 실행된다.

@PreDestroy Method는 Spring Container에 의해 Bean 소멸 전에 실행된다.

public class DemoBean 
{
    @PostConstruct
    public void customInit() 
    {
        System.out.println("Method customInit() invoked...");
    }
     
    @PreDestroy
    public void customDestroy() 
    {
        System.out.println("Method customDestroy() invoked...");
    }
}

[참고사이트]

728x90
반응형

'Programing > Spring' 카테고리의 다른 글

MappingJackson2JsonView  (0) 2021.10.09
Singleton Registry  (0) 2021.10.02
Spring Bean Scopes  (0) 2021.09.28
Spring Bean  (0) 2021.09.26
IoC / DI  (0) 2021.09.26
Comments