ServletContext sc = getServletContext();
RequestDispatcher rd = sc.getRequestDispatcher("페이지경로");
rd.include(request,response);
◇ Servlet은 HttpServlet 클래스를 상속 받고, getServletContext()는 HttpServlet 클래스에 있기 때문에
getServletContext() 메소드는 바로 사용할 수 있다.
◇ ServletContext 객체로부터 RequestDispatcher 객체를 가져오는 데, 이 때 어떠한 페이지를 삽입할지
경로를 써주면 된다.
◇ include()는 여러번 호출해도 된다. 각 호출 시마다 설정해 놓은 페이지가 삽입된다.
프로그래밍/기타