Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- java
- 인프런
- JDBC
- springdatajpa
- 스프링
- Thymeleaf
- Proxy
- Greedy
- 스프링 핵심 기능
- Android
- 알고리즘
- QueryDSL
- 자바
- transaction
- kotlin
- http
- JPQL
- AOP
- 백준
- 김영한
- Spring Boot
- pointcut
- 스프링 핵심 원리
- Servlet
- spring
- SpringBoot
- Exception
- db
- 그리디
- jpa
Archives
- Today
- Total
개발자되기 프로젝트
@PostConstruct, @PreDestroy 본문
1. 빈 생성, 의존성 주입 후 실행할 method 지정 : @PostConstruct
@PostConstruct
public void init() {
System.out.println("NetworkClient.init");
connect();
call("초기화 연결 메세지");
}
2. 빈 소면 전에 실행할 method 지정 : @PreDestroy
@PreDestroy
public void close() {
System.out.println("NetworkClient.close");
disconnect();
}
3. Test
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")
@Bean
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 = 초기화 연결 메세지
21:40:54.822 [main] DEBUG org.springframework.context.annotation.AnnotationConfigApplicationContext - Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@662b4c69, started on Fri Jul 30 21:40:54 KST 2021
NetworkClient.close
close : http://hello-spring.dev
4. @PostConstruct, @PreDestroy
- 스프링에서 권장함
- 개편함
- javax.annotation.PostConstruct이다. 스프링에 종속이 아니라 java 표준이다.
- 컴포넌트 스캔과 잘 어울린다?
- 단점은... 외부 라이브러리에 적용 못해..
- 외부 라이브러리를 초기화, 종료해야 하면 @Bean기능을 사용하자.
5. GitHub : 210730 @PostConstruct, @PreDestroy
'인프런 > [인프런] Spring 핵심원리 이해' 카테고리의 다른 글
프로토타입 빈과 싱글톤 빈을 같이 사용하면? (0) | 2021.07.31 |
---|---|
빈 스코프?? (0) | 2021.07.30 |
빈 생명주기 : @Bean(initMethod, destroyMethod) (0) | 2021.07.30 |
빈 생명주기 콜백 (0) | 2021.07.30 |
스프링 빈 수동 등록 vs 자동 등록 (0) | 2021.07.30 |
Comments