UserInfo user = (UserInfo)session.getAttribute("你保存的session名字");
response.addHeader("Pragma", "No-cache");
response.addHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires",-10);
if(user==null){
response.sendRedirect("index.jsp");
return;
}在页面加入这段代码后。在session过去后。用户刷新页面点击链接操作会跳到首页,并且浏览器后退按钮也无法返回到当前页面,必须重新登录才可以