방카@Dev
[Spring]빈 생명주기 콜백 본문
*스프링 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;
}
}
}
'BackEnd > Spring' 카테고리의 다른 글
[Spring]MyBatis (0) | 2024.06.25 |
---|---|
[Spring] Scope 객체를 이용한 데이터 전송 방법(Request,Model,Session) (0) | 2024.06.24 |
[Spring]JDBC Template 정리 (0) | 2024.06.20 |
[Spring]게시판 파일 업로드 라이브러리(COS) (1) | 2024.06.20 |
[Spring]Validator를 이용한 유효성 검사 (0) | 2024.06.17 |