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
- 컴포넌트
- restapi
- sql
- Intellij
- springboot
- crud
- 개발공부
- 개발
- 쿼리
- Vue
- JS
- EXTJS
- component
- mssql
- 자바
- jdk
- table
- 데이터베이스
- Spring
- GIT
- 리액트
- DATABASE
- java
- 스프링부트
- 스프링
- javascript
- React
- 보안취약점
- reactjs
- 자바스크립트
Archives
- Today
- Total
목록컨텍스트리스너 (1)
준준의 기록일지
[Spring] Context Listener 란??
ContextListener란?? ContextListener는 웹 어플리케이션(컨테스트)가 시작되거나 중지될 때, 그 알람을 받는 리스너를 말합니다. ContextListener 생성 방법 ContextListener를 생성하기 위해서는 ServletContextListener 인터페이스를 구현하는 클래스를 만들어야한다. contextInitialized() 어플리케이션이 시작될 때 호출되는 메소드 contextDestroyed() 어플리케이션이 중지될 때 호출되는 메소드 ServletContext ServletContext가 ServletContextEvent 객체로부터 위 두개의 메소드가 전달됩니다. ServletContext servletContext = servletContextEvent.get..
스프링
2021. 2. 17. 18:02