如何判断session过期触发的方法 如何判断session是否过期


if(request.getSession(false)==null){
System.out.println("session过期了");
}
【如何判断session过期触发的方法 如何判断session是否过期】如果session不存在了就表示是过期了
Objectibcode=request.getSession().getAttribute(ConstantFields.IB_CODE);
if(null==ibcode||"".equals(ibcode)){
System.out.println("session过期了");
}

如果session不存在了就表示是过期了
前提或条件

    myeclipse


    推荐阅读