package jp.ac.kcska.questionsystem.exammanager.horizon; import java.io.IOException; import java.util.ArrayList; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; public class ExamManagerServlet extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { HttpSession session = req.getSession(); GetExamList getExamList = new GetExamList(); ArrayList examList = getExamList.getList(); session.setAttribute("examList", examList); RequestDispatcher dispatcher = req.getRequestDispatcher("/exammanager.jsp"); dispatcher.forward(req, resp); } }