org.apache.catalina.connector.Request.getPathInfo()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(81)

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

Request.getPathInfo介绍

[英]Return the path information associated with this Request.
[中]返回与此请求关联的路径信息。

代码示例

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(rb.getString(LogFacade.CANNOT_USE_REQUEST_OBJECT_OUTSIDE_SCOPE_EXCEPTION));
  }
  return request.getPathInfo();
}

代码示例来源:origin: org.osivia.portal.core/osivia-portal-jbossas-jbossweb-lib

/*      */   public String getPathTranslated()
/*      */   {
/* 1930 */     if (this.context == null) {
/* 1931 */       return null;
/*      */     }
/* 1933 */     if (getPathInfo() == null) {
/* 1934 */       return null;
/*      */     }
/* 1936 */     return this.context.getServletContext().getRealPath(getPathInfo());
/*      */   }
/*      */

代码示例来源:origin: tomcat/catalina

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
public String getPathTranslated() {
  if (context == null)
    return (null);
  if (getPathInfo() == null) {
    return (null);
  } else {
    return (context.getServletContext().getRealPath(getPathInfo()));
  }
}

代码示例来源:origin: jboss.web/jbossweb

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
public String getPathTranslated() {
  if (context == null)
    return (null);
  if (getPathInfo() == null) {
    return (null);
  } else {
    return (context.getServletContext().getRealPath(getPathInfo()));
  }
}

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

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
@Override
public String getPathTranslated() {
  if (context == null)
    return null;
  if (getPathInfo() == null) {
    return null;
  }
  return context.getServletContext().getRealPath(getPathInfo());
}

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

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
@Override
public String getPathTranslated() {
  if (context == null)
    return null;
  if (getPathInfo() == null) {
    return null;
  }
  return context.getServletContext().getRealPath(getPathInfo());
}

代码示例来源:origin: org.jboss.web/jbossweb

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
public String getPathTranslated() {
  if (context == null)
    return (null);
  if (getPathInfo() == null) {
    return (null);
  } else {
    return (context.getServletContext().getRealPath(getPathInfo()));
  }
}

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

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
@Override
public String getPathTranslated() {
  if (context == null)
    return null;
  if (getPathInfo() == null) {
    return null;
  }
  return context.getServletContext().getRealPath(getPathInfo());
}

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

/**
 * Return the extra path information for this request, translated
 * to a real path.
 */
@Override
public String getPathTranslated() {
  if (context == null) {
    return null;
  }
  if (getPathInfo() == null) {
    return null;
  }
  return context.getServletContext().getRealPath(getPathInfo());
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

代码示例来源:origin: tomcat/catalina

public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

代码示例来源:origin: jboss.web/jbossweb

public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

代码示例来源:origin: org.jboss.web/jbossweb

public String getPathInfo() {
  if (request == null) {
    throw MESSAGES.nullRequestFacade();
  }
  return request.getPathInfo();
}

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

@Override
public String getPathInfo() {
  if (request == null) {
    throw new IllegalStateException(
            sm.getString("requestFacade.nullRequest"));
  }
  return request.getPathInfo();
}

相关文章

微信公众号

最新文章

更多

Request类方法