我有A.jsp文件,其中我有int变量。现在我想在B.jsp和C.jsp文件中使用这个变量的值。我们怎么做?
编辑:所以在A.jsp中我们可以声明request.getSession().setAttribute("nameOfVariable", variable);
,在B.jsp中我们可以声明request.getSession().getAttribute("nameOfVariable");
答案 0 :(得分:4)
使用RequestDispatcher
方法获取属性:
request.setAttribute("list", fooList);
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("myJsp.jsp");
dispatcher.forward(request, response);