코드 그라데이션
빈 등록 초기화, 소멸 메서드 본문
NetworkClient
package inflearn.spring_core.lifecycle;
public class NetworkClient { // implement 지움
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();
}
}
설정 정보에 초기화 소멸 메서드 지정
package inflearn.spring_core.lifecycle;
import org.junit.jupiter.api.Test;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
public class BeanLifeCycleTest {
@Test
public void lifeCycleTest() {
ConfigurableApplicationContext ac = new AnnotationConfigApplicationContext(LifeCycleConfig.class);
NetworkClient client = ac.getBean(NetworkClient.class);
ac.close(); //스프링 컨테이너를 종료, ConfigurableApplicationContext 필요
}
// static 클래스
@Configuration
static class LifeCycleConfig {
// 설정 정보에 초기화 소멸 메서드 지정
@Bean(initMethod = "init", destroyMethod = "close") // 이렇게 지정
public NetworkClient networkClient() {
NetworkClient networkClient = new NetworkClient();
networkClient.setUrl("http://hello-spring.dev");
return networkClient;
}
}
}
실행 결과
생성자 호출, url = null
NetworkClient.init
connect: http://hello-spring.dev
call: http://hello-spring.dev message = 초기화 연결 메시지
20:23:14.034 [main] DEBUG org.springframework.context.annotation.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@43dac38f, started on Wed Oct 11 20:23:13 KST 2023
NetworkClient.close
close + http://hello-spring.dev
설정 정보 사용 특징
- 메서드 이름을 자유롭게 줄 수 있다.
- 스프링 빈이 스프링 코드에 의존하지 않는다.
- 코드가 아니라 설정 정보를 사용하기 때문에 코드를 고칠 수 없는 외부 라이브러리에도 초기화, 종료
메서드를 적용할 수 있다.
종료 메서드 추론
728x90
'Spring > 핵심 원리 구현' 카테고리의 다른 글
[중간점검] 생성자 주입, 그리고 수정자 주입 (0) | 2024.02.12 |
---|---|
애노테이션 @PostConstruct, @PreDestroy (0) | 2024.02.11 |
인터페이스 InitializingBean, DisposableBean (0) | 2024.02.10 |
빈 생명주기 콜백 시작 (1) | 2024.02.09 |
자동 수동의 올바른 실무 운영 기준 (1) | 2024.02.08 |
Comments