()
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected