▶forward 1. 다른 경로로 이동하는 방식 중 하나이다. 2. 다른 경로로 직접 요청 파라미터를 이동시킨다. 3. 경로를 작성할 때 URLMapping만 작성한다. (ContextPath는 작성하지 않는다) forward1 1 2 3 4 5 6 7 8 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 요청의 전달 객체 생성 경유하는곳 경유 RequestDispatcher dispatcher = request.getRequestDispatcher("/forward2"); // 전달 (요청과 응답을 모두 전달함) dispatcher.for..