방문해 주셔서 감사합니다! 항상 행복하세요! - 문의사항은 메일 또는 댓글로 언제든 연락주세요. - "해줘","답 내놔" 같은 질문은 답변드리지 않습니다. - 메일주소 : lts06069@naver.com lazy init1 스프링 객체 초기화, 스프링 객체 늦은 초기화 (Spring bean init, Spring bean lazy init) 빈 객체를 초기화 하는 방법 1. 에노테이션을 활용한 방법 import javax.annotation.PreDestroy; import javax.annotation.PostConstruct; @Controller class TestController { //기타 내용들.. @PreDestroy public void destroy() throws Exception { System.out.println("destroy!!"); } @PostConstruct public void init() throws Exception { System.out.println("init!!"); } } 2. 인터페이스를 상속받는 방법 import org.springframework.beans.factory.Disposable.. 2019. 7. 26. 이전 1 다음