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

Method service

ch2/HelloServlet.java:22–28  ·  view source on GitHub ↗
(HttpServletRequest request, HttpServletResponse response)

Source from the content-addressed store, hash-verified

20 }
21
22 @Override // 호출될 때마다 반복적으로 수행됨.
23 public void service(HttpServletRequest request, HttpServletResponse response) {
24 // 1. 입력
25 // 2. 처리
26 // 3. 출력
27 System.out.println("[HelloSerlvet] service()");
28 }
29
30 @Override
31 public void destroy() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected