






protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("ContextPath : Server가 프로젝트를 찾아가는 이름");
System.out.println(" -> " +request.getContextPath());
System.out.println("ServletPath : url mapping값");
System.out.println(" -> " +request.getServletPath());
System.out.println("URL : 지원의 정확항 위치");
System.out.println("-> " +request.getRequestURL());
System.out.println("URI: 지원의 고유한 식별자");
System.out.println("-> " +request.getRequestURI());
}