怎样才能让Tomcat不保存SESSIONS.ser?

    技术2022-05-20  41

      两种方式:   (1)在server.xml文件中       <Context ...>          <Manager className="org.apache.catalina.session.StandardManager" pathname="" />       </Context>

      (2)在context.xml中    <Context><Manager pathname="" /><Context>


    最新回复(0)