servlet中用session传参给jsp 显示为上一次的值
servlet中调用一个后台方法,返回一个字符串
把值存在session里,跳转到Ok.jsp
rePath = Shapshot.shapshot(srcUrl, method);
System.out.println(rePath);
session.setAttribute("repath", rePath);
System.out.println("servlet——"+session.getAttribute("repath"));
response.sendRedirect("ok.jsp");
输出结果为
null
servlet——null
再次访问时,返回的是上一次的rePath
地址1
servlet——地址1
------解决方案--------------------很明显是你方法shapshot(srcUrl, method);第一次返回null,第二次返回地址1,贴这点代码没什么问题啊,不明白你要实现什么需求,你所谓的“显示为上一次的值”是什么意思
------解决方案--------------------
------解决方案--------------------遇到过类似问题,不要用重定向啊,直接跳转!response.sendRedirect("ok.jsp");