【发布时间】:2016-04-26 14:02:03
【问题描述】:
我正在尝试设置一个 int 值来请求这样的会话...
request.getSession().setAttribute("score", 0);
request.getRequestDispatcher("game.jsp").forward(request, response);
但是<% if(request.getAttribute("score") == null) %> 给出了正确的结果,当我尝试使用这些数据时,我得到了NullPointerException。这可能是什么原因?谢谢。
【问题讨论】:
-
您似乎给出了错误的路径?您是否检查过该视图是否为空?
-
不,它不为空。路径正确