org.apache.catalina.Context.getSessionCookieName()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(6.3k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中org.apache.catalina.Context.getSessionCookieName()方法的一些代码示例,展示了Context.getSessionCookieName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Context.getSessionCookieName()方法的具体详情如下:
包路径:org.apache.catalina.Context
类名称:Context
方法名:getSessionCookieName

Context.getSessionCookieName介绍

[英]Gets the name to use for session cookies. Overrides any setting that may be specified by the application.
[中]获取用于会话cookie的名称。覆盖应用程序可能指定的任何设置。

代码示例

代码示例来源:origin: codefollower/Tomcat-Research

private static String getConfiguredSessionCookieName(Context context) {
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

private static String getConfiguredSessionCookieName(Context context) {
  
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

private static String getConfiguredSessionCookieName(Context context) {
  
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

private static String getConfiguredSessionCookieName(Context context) {
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

private static String getConfiguredSessionCookieName(Context context) {
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

private static String getConfiguredSessionCookieName(Context context) {
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

private static String getConfiguredSessionCookieName(Context context) {
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

private static String getConfiguredSessionCookieName(Context context) {
  
  // Priority is:
  // 1. Cookie name defined in context
  // 2. Cookie name configured for app
  // 3. Default defined by spec
  if (context != null) {
    String cookieName = context.getSessionCookieName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
    
    SessionCookieConfig scc =
      context.getServletContext().getSessionCookieConfig();
    cookieName = scc.getName();
    if (cookieName != null && cookieName.length() > 0) {
      return cookieName;
    }
  }
  return null;
}

代码示例来源:origin: org.glassfish.main.web/web-core

sessionCookieName = context.getSessionCookieName();

代码示例来源:origin: org.glassfish.main.web/web-core

/**
 * Removes any Set-Cookie response headers whose value contains the
 * string JSESSIONID
 */
public void removeSessionCookies() {
  String matchExpression = "^" + getContext().getSessionCookieName() + "=.*";
  coyoteResponse.getResponse().getHeaders().removeHeaderMatches("Set-Cookie", matchExpression);
  matchExpression = "^" +
    org.apache.catalina.authenticator.Constants.SINGLE_SIGN_ON_COOKIE + "=.*";
  coyoteResponse.getResponse().getHeaders().removeHeaderMatches("Set-Cookie", matchExpression);
}
// END GlassFish 896

代码示例来源:origin: org.glassfish.main.web/web-core

private void addSessionCookie() {
  if (context != null && context.getCookies() && response != null) {
    String jvmRoute = ((StandardContext) getContext()).getJvmRoute();
    /*
     * Check if context has been configured with jvmRoute for
     * Apache LB. If it has, do not add the JSESSIONID cookie
     * here, but rely on OutputBuffer#addSessionCookieWithJvmRoute
     * to add the jvmRoute enhanced JSESSIONID as a cookie right
     * before the response is flushed.
     */
    if (jvmRoute == null) {
      Cookie newCookie = new Cookie(
          getSafeHeaderValue(getContext().getSessionCookieName()), getSafeHeaderValue(session.getId()));
      configureSessionCookie(newCookie);
      ((HttpResponse)response).addSessionCookieInternal(newCookie);
    }
  }
}

代码示例来源:origin: org.glassfish.main.web/web-core

sessionCookieName = context.getSessionCookieName();

相关文章

微信公众号

最新文章

更多

Context类方法