Spring @PostConstruct @PreDestory
@PostConstruct
- 객체의 생성되고 별도의 초기화 작업이 필요한 경우 해당 어노테이션 선언후 메소드 선언
- @PostConstruct 어노테이션을 설정해놓은 init 메소드는 WAS가 띄워질 때 실행
@PreDestroy
- 스프링 컨테이너에서 객체를 제거하기 전 작업이 필요하다면 어노테이션 사용 후 메서드 선언
예제
@PostConstruct
public void initConstruct(){
System.out.println("초기화");
}
@PreDestroy
public void destroySpring(){
System.out.println("종료 바로 전");
}
Author And Source
이 문제에 관하여(Spring @PostConstruct @PreDestory), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@flasharrow/Spring-PostConstruct-PreDestory
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- 스프링 컨테이너에서 객체를 제거하기 전 작업이 필요하다면 어노테이션 사용 후 메서드 선언
예제
@PostConstruct
public void initConstruct(){
System.out.println("초기화");
}
@PreDestroy
public void destroySpring(){
System.out.println("종료 바로 전");
}
Author And Source
이 문제에 관하여(Spring @PostConstruct @PreDestory), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@flasharrow/Spring-PostConstruct-PreDestory
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
@PostConstruct
public void initConstruct(){
System.out.println("초기화");
}
@PreDestroy
public void destroySpring(){
System.out.println("종료 바로 전");
}
Author And Source
이 문제에 관하여(Spring @PostConstruct @PreDestory), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@flasharrow/Spring-PostConstruct-PreDestory저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)