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

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

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

Context.getSessionCookiePath介绍

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

代码示例

代码示例来源:origin: stackoverflow.com

if (ctxt.getSessionCookiePath() != null) {
  contextPath = ctxt.getSessionCookiePath();
} else {
  contextPath = ctxt.getEncodedPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat7-clustering-wadi

protected void setNewSessionCookie(Request request, Response response, String augmentedSessionID) {
  Context context = request.getContext();
  if (context.getCookies()) {
    Cookie newCookie = new Cookie(ApplicationSessionCookieConfig.getSessionCookieName(request.getContext()), augmentedSessionID);
    newCookie.setMaxAge(-1);
    String contextPath = null;
    if (context != null && context.getSessionCookiePath() != null) {
      contextPath = context.getSessionCookiePath();
    }
    if ((contextPath != null) && (contextPath.length() > 0)) {
      newCookie.setPath(contextPath);
    } else {
      newCookie.setPath("/");
    }
    if (request.isSecure()) {
      newCookie.setSecure(true);
    }
    response.addCookie(newCookie);
  }
}

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

String contextPath = context.getSessionCookiePath();
if (contextPath == null || contextPath.length() == 0) {
  contextPath = scc.getPath();

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

if (("/".equals(context.getSessionCookiePath()) 
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

if (("/".equals(context.getSessionCookiePath()) 
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

if (("/".equals(context.getSessionCookiePath())
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

if (("/".equals(context.getSessionCookiePath()) 
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

if (("/".equals(context.getSessionCookiePath())
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

if (("/".equals(context.getSessionCookiePath())
    && isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {
  session = manager.createSession(getRequestedSessionId());

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

} else if (("/".equals(context.getSessionCookiePath())
    && isRequestedSessionIdFromCookie())) {

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

} else if (("/".equals(context.getSessionCookiePath())
    && isRequestedSessionIdFromCookie())) {

相关文章

微信公众号

最新文章

更多

Context类方法