weixin_42508843 2013-09-05 11:33
浏览 1759
已采纳

JSP调用Servlet后,通过request.getSession().getAttribute("XX"),数据丢失

问题描述:
1.首先通过login.jsp登陆系统,用户验证通过后,讲用户信息设置到session中,具体代码如下:
[code="java"]
User user = UserManager.getInstance().login(userId, password);

session.setAttribute("user_info", user);

//session.setMaxInactiveInterval(60*60);

response.sendRedirect(request.getContextPath() + "/main.jsp");
[/code]
2.上面定向到main.jsp页面后,user_info数据存在。
3.然后我在此页面中写入如下请求servlet代码后,
[code="js"]
function addFlowCard() {
window.self.location = "<%=basePath%>servlet/FlowCardServlet?command=${showAdd}";
}
[/code]
4.在servlet里面取得的值却为null,,代码如下
[code="java"]
@Override
protected final void service(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
command = request.getParameter("command");
user = (User) request.getSession().getAttribute("user_info");
super.service(request, response);
}
[/code]
5.上面request.getSession().getAttribute("user_info")取得的值为null。
6.请各位看看哪里有问题??

  • 写回答

2条回答 默认 最新

  • jinbingchuan 2013-09-05 12:43
    关注

    response.sendRedirect(request.getContextPath() + "/main.jsp"); ->

    response.sendRedirect(response.encodeRedirectURL(request.getContextPath() + "/main.jsp"));

    你的应该是jessionid丢失,所以下次会新建一个session故为null,你可以看下main.jsp是没有cookie名称jessionid的

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 android报错 brut.common.BrutException: could not exec (exit code = 1)
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!