프로그램/Java - 정보
자바 8개 리스너
ServletContextAttributeListener 컨테이너에 저장된 속성 값들의 변화가 있을 때 수행하기 위한 메소드를 정의한 인터페이스이다. 구현해야 할 메소드 attributeAdded(ServletContextAttributeEvent event) : void 새로운 속성 값이 추가될 때 실행되는 메소드 attributeRemoved(ServletContextAttributeEvent event) : void 속성 값이 제거될 때 실행되는 메소드 attributeReplaced(ServletContextAttributeEvent event) : void HttpSessionListener HTTP 세션이 활성화 되거나 비활성화 되려할 때 혹은 속성 값들이 추가, 삭제, 변경될 경우 수행하기 ..
2011. 5. 19. 00:43