如何判断session是否过期 判断session是否有效

2024-09-18 综合百科 0次阅读 佚名

if(request.getSession(false)==null){

System.out.println("session过期了");

}

如果session不存在了就表示是过期了

Objectibcode=request.getSession().getAttribute(ConstantFields.IB_CODE);

if(null==ibcode||"".equals(ibcode)){

System.out.println("session过期了");

}

如果session不存在了就表示是过期了

工具/原料

    myeclipse

猜你感兴趣