본문 바로가기
2019/JSP Servlet

SERVLET Life Cycle

by SOLYI 2020. 1. 3.

  • 서블릿 생명 주기 ( Life Cycle )

  • init  - 서버가 처음 동작 할때
  • service - 요청 될 때마다 ( doGet, doPost )
  • destroy - 서버 종료 될 때

테스트

1
2
3
4
5
6
7
8
9
10
11
12
13
public void init(ServletConfig config) throws ServletException {
        System.out.println("init method");
    }
    
    public void destroy() {
        System.out.println("destroy method");
    }
 
    protected void service(HttpServletRequest request, HttpServletResponse response) 
                            throws ServletException, IOException {
        System.out.println("service method");
    }
}
 

실행결과

반응형