当前位置: 代码迷 >> Web前端 >> 对话过期跳到登录界面
  详细解决方案

对话过期跳到登录界面

热度:148   发布时间:2013-02-27 10:48:11.0
会话过期跳到登录界面
public String detect() throws Exception{
		String currentUser = (String)getSession().get("currentUser");
		if(currentUser==null){
			log.info("session is timeout");
			returnPageURL = "/timeoutRedirect.jsp";
			return "redirect";
		}
		
		log.info("session is not timeout");
		
		returnPageURL = "/system/detect/computer_detect.jsp";
		return "dispatcher";
	}

?

  相关解决方案