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

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

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

Connector.getProtocolHandlerClassName介绍

[英]Return the class name of the Coyote protocol handler in use.
[中]返回正在使用的Coyote协议处理程序的类名。

代码示例

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.glassfish.grizzly.tcp.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.jk.server.JkCoyoteHandler".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return null;
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.jk.server.JkCoyoteHandler".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11NioProtocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpNioProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * Return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if ("org.apache.coyote.http11.Http11Protocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11AprProtocol".equals
    (getProtocolHandlerClassName())
    || "org.apache.coyote.http11.Http11NioProtocol".equals
    (getProtocolHandlerClassName())) {
    return "HTTP/1.1";
  } else if ("org.apache.coyote.ajp.AjpProtocol".equals
        (getProtocolHandlerClassName())
        || "org.apache.coyote.ajp.AjpAprProtocol".equals
        (getProtocolHandlerClassName())) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat6

private boolean isNativeAPRLibInstalled() {
  try {
    Connector connector = new Connector("HTTP/1.1");
    if (!connector.getProtocolHandlerClassName().equalsIgnoreCase("org.apache.coyote.http11.Http11AprProtocol")) {        
      return false;
    } 
  } catch (Exception e) {
        return false;
  }
  return true;
}

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

/**
 * @return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if (("org.apache.coyote.http11.Http11NioProtocol".equals(getProtocolHandlerClassName()) &&
        (!AprLifecycleListener.isAprAvailable() || !AprLifecycleListener.getUseAprConnector())) ||
      "org.apache.coyote.http11.Http11AprProtocol".equals(getProtocolHandlerClassName()) &&
        AprLifecycleListener.getUseAprConnector()) {
    return "HTTP/1.1";
  } else if (("org.apache.coyote.ajp.AjpNioProtocol".equals(getProtocolHandlerClassName()) &&
        (!AprLifecycleListener.isAprAvailable() || !AprLifecycleListener.getUseAprConnector())) ||
      "org.apache.coyote.ajp.AjpAprProtocol".equals(getProtocolHandlerClassName()) &&
        AprLifecycleListener.getUseAprConnector()) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

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

/**
 * @return the Coyote protocol handler in use.
 */
public String getProtocol() {
  if (("org.apache.coyote.http11.Http11NioProtocol".equals(getProtocolHandlerClassName()) &&
        (!AprLifecycleListener.isAprAvailable() || !AprLifecycleListener.getUseAprConnector())) ||
      "org.apache.coyote.http11.Http11AprProtocol".equals(getProtocolHandlerClassName()) &&
        AprLifecycleListener.getUseAprConnector()) {
    return "HTTP/1.1";
  } else if (("org.apache.coyote.ajp.AjpNioProtocol".equals(getProtocolHandlerClassName()) &&
        (!AprLifecycleListener.isAprAvailable() || !AprLifecycleListener.getUseAprConnector())) ||
      "org.apache.coyote.ajp.AjpAprProtocol".equals(getProtocolHandlerClassName()) &&
        AprLifecycleListener.getUseAprConnector()) {
    return "AJP/1.3";
  }
  return getProtocolHandlerClassName();
}

代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat6

private GBeanInfo getConnectorGBeanInfo(Connector conn) {
  String className = conn.getProtocolHandlerClassName();
  AnnotationGBeanInfoFactory annotationGbeanInfoFactory=new AnnotationGBeanInfoFactory();

代码示例来源:origin: org.apache.geronimo.modules/geronimo-tomcat6

recipe.setConstructorArgNames(new String[] { "protocol" });
Connector connector = (Connector) recipe.create(cl);
boolean executorSupported = !connector.getProtocolHandlerClassName().equals("org.apache.jk.server.JkCoyoteHandler");
for (Map.Entry<QName, String> entry : otherAttributes.entrySet()) {
  String name = entry.getKey().getLocalPart();

代码示例来源:origin: apache/ofbiz-framework

public boolean start() throws ContainerException {
  try {
    tomcat.start();
  } catch (LifecycleException e) {
    throw new ContainerException(e);
  }
  for (Connector con: tomcat.getService().findConnectors()) {
    Debug.logInfo("Connector " + con.getProtocol() + " @ " + con.getPort() + " - " +
      (con.getSecure() ? "secure" : "not-secure") + " [" + con.getProtocolHandlerClassName() + "] started.", module);
  }
  Debug.logInfo("Started " + ServerInfo.getServerInfo(), module);
  return true;
}

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

@Override
protected void initInternal() throws LifecycleException {
  super.initInternal();
  // Initialize adapter
  adapter = new CoyoteAdapter(this);
  protocolHandler.setAdapter(adapter);
  // Make sure parseBodyMethodsSet has a default
  if( null == parseBodyMethodsSet ) {
    setParseBodyMethods(getParseBodyMethods());
  }
  if (protocolHandler.isAprRequired() &&
      !AprLifecycleListener.isAprAvailable()) {
    throw new LifecycleException(
        sm.getString("coyoteConnector.protocolHandlerNoApr",
            getProtocolHandlerClassName()));
  }
  try {
    protocolHandler.init();
  } catch (Exception e) {
    throw new LifecycleException
      (sm.getString
       ("coyoteConnector.protocolHandlerInitializationFailed"), e);
  }
}

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

@Override
protected void initInternal() throws LifecycleException {
  super.initInternal();
  // Initialize adapter
  adapter = new CoyoteAdapter(this);
  protocolHandler.setAdapter(adapter);
  // Make sure parseBodyMethodsSet has a default
  if( null == parseBodyMethodsSet ) {
    setParseBodyMethods(getParseBodyMethods());
  }
  if (protocolHandler.isAprRequired() &&
      !AprLifecycleListener.isAprAvailable()) {
    throw new LifecycleException(
        sm.getString("coyoteConnector.protocolHandlerNoApr",
            getProtocolHandlerClassName()));
  }
  try {
    protocolHandler.init();
  } catch (Exception e) {
    throw new LifecycleException
      (sm.getString
       ("coyoteConnector.protocolHandlerInitializationFailed"), e);
  }
  // Initialize mapper listener
  mapperListener.init();
}

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

getProtocolHandlerClassName()));

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

getProtocolHandlerClassName()));

相关文章

Connector类方法