MCPcopy Create free account
hub / github.com/castello/spring_basic / init

Method init

ch2/HelloServlet.java:16–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14 @WebServlet("/hello")
15 public class HelloServlet extends HttpServlet {
16 @Override
17 public void init() throws ServletException {
18 // 서블릿 초기화 - 서블릿이 생성 또는 리로딩 때, 단 한번만 수행됨.
19 System.out.println("[HelloSerlvet] init()");
20 }
21
22 @Override // 호출될 때마다 반복적으로 수행됨.
23 public void service(HttpServletRequest request, HttpServletResponse response) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected