zoukankan      html  css  js  c++  java
  • Java Servlet/JSP容器配置 session id

    http://www.eclipse.org/jetty/documentation/current/session-management.html#setting-session-characteristics

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
        version="3.0">
        <display-name>hello-jee5</display-name>
        <session-config>
            <session-timeout>30</session-timeout>
            <!-- Servlet 3.0规范可以使用该配置,使session id在URL中,而不是使用cookie -->
            <!-- <tracking-mode>URL</tracking-mode> -->
        </session-config>
        <context-param>
            <param-name>org.eclipse.jetty.servlet.SessionCookie</param-name>
            <param-value>SID</param-value>
        </context-param>
        <context-param>
            <param-name>org.eclipse.jetty.servlet.SessionIdPathParameterName</param-name>
            <param-value>sid</param-value>
        </context-param>

    resin 3.1.x不支持servlet 3.0规范,不过可以在resin.conf里配置

        <session-config>
            <enable-cookies>false</enable-cookies>
           <enable-url-rewriting>true</enable-url-rewriting>       
          </session-config>    
        
        <web-app id="/hello-jee5" root-directory="D:Workspace\_EclipseKeplerhello-jee5srcmainwebapp">
                <!-- configurate web directory, app.home=maven项目根目录,app.name=项目构建后的名字 -->
                <prologue>
                    <class-loader>
                        <!--configurate class directory-->
                        <compiling-loader path="D:Workspace\_EclipseKeplerhello-jee5	argetclasses"/> 
                        <!--configurate library directory-->
                        <library-loader path="D:Workspace\_EclipseKeplerhello-jee5	argethello-jee5-0.0.1-SNAPSHOTWEB-INFlib"/>
                    </class-loader>
                </prologue>
            </web-app>
  • 相关阅读:
    MYSQL 优化(二),持续更新收藏
    一些linux命令 备份下
    lsyncd +xinetd+syncd 多服务器文件同步
    阿里slb+ecs+https
    微擎 从 php5 到php7 的各种填坑 持续更新
    lmap
    微擎的ifp ife ifpp
    工具索引 mark名字
    Funny Bug || Sky Hole
    mysql 查询小技巧
  • 原文地址:https://www.cnblogs.com/wucg/p/3951614.html
Copyright © 2011-2022 走看看