• Java web 中Session有效时间设置


    1、在web容器中设置

    例如:tomcat里面的web.xml

      <session-config>
            <session-timeout>30</session-timeout>
        </session-config>

    默认30分钟,自己修改数字即可

    2、在工程的web.xml中设置

    例如:java web 项目中,在WebContent->WEB-INF->web.xml下

     <session-config>
        <session-timeout>30</session-timeout>
      </session-config>

    3、在Servlet中设置(Java代码)

    HttpSession session = request.getSession();
    
    session.setMaxInactiveInterval(30*60);//以秒为单位

    以上三种优先顺序:1 < 2 <3

     

    备注:

    request.getSession()和request.getSession(true)意思相同:获取session,如果session不存在,就新建一个

    reqeust.getSession(false)获取session,如果session不存在,则返回null

    如果 项目中无法确定会话一定存在,最好用request.session(false);

    例如:当向Session中存取登录信息时,一般建议:HttpSession session =request.getSession();

              当从Session中获取登录信息时,一般建议:HttpSession session =request.getSession(false);

  • 相关阅读:
    老陈与小石头运算代码
    第五次作业
    老陈与小石头
    简易四则运算
    四则运算
    对git的认识
    第一次作业
    arcgis-tomcat-cors
    jquery deferred promise
    springloaded hot deploy
  • 原文地址:https://www.cnblogs.com/zhouerba/p/7379939.html
Copyright © 2020-2023  润新知