问答详情
源自:4-2 session对象

session生存时间问题

session.getMaxInactiveInterval();这样没下划线

session.getMaxInactiveInterval(10);这样getMaxInactiveInterval(10)就会有下划线错误

错误显示如下:

the method getMaxInactiveInterval in the type HttpSession is not applicable for the

arguements(int)错误

提问者:慕盖茨4878874 2016-04-17 09:20

个回答

  • 慕工程4835570
    2016-04-17 10:03:17

    你如果要设置的话应该是sesstion.setMaxInactiveInterval(10);

  • 慕仙9202759
    2016-04-17 10:02:53

    session.getMaxInactiveInterval();是获取session最大生命周期,值是1800秒。getMaxInactiveInterval()里面没有参数,当然不能在里面写个10喽。setMaxInactiveInterval(10)才对

  • 慕工程4835570
    2016-04-17 09:59:44

    这个是设置session时间周期