<Connector
port="8080" ==>端口8080
maxThreads="150" ==>?
minSpareThreads="25" ==>?
maxSpareThreads="75" ==>?
enableLookups="false" ==>?
redirectPort="8443" ==>?
acceptCount="100" ==>?
debug="0" ==>?
connectionTimeout="20000" ==>连接超时?
disableUploadTimeout="true" ==>?
/>

解决方案 »

  1.   

    Here is you need:allowTrace--A boolean value which can be used to enable or disable the TRACE HTTP method. If not specified, this attribute is set to false.
     
    emptySessionPath--If set to true, all paths for session cookies will be set to /. This can be useful for portlet specification implementations, but will greatly affect performance if many applications are accessed on a given server by the client. If not specified, this attribute is set to false.
     
    enableLookups -- Set to true if you want calls to request.getRemoteHost() to perform DNS lookups in order to return the actual host name of the remote client. Set to false to skip the DNS lookup and return the IP address in String form instead (thereby improving performance). By default, DNS lookups are enabled.
     
    maxPostSize-- The maximum size in bytes of the POST which will be handled by the container FORM URL parameter parsing. The feature can be disbled by setting this attribute to a value inferior or equal to 0. If not specified, this attribute is set to 2097152 (2 megabytes).
     
    protocol-- This attribute value must be HTTP/1.1 to use the HTTP handler, which is the default.
     
    proxyName-- If this Connector is being used in a proxy configuration, configure this attribute to specify the server name to be returned for calls to request.getServerName(). See Proxy Support for more information.
     
    proxyPort-- If this Connector is being used in a proxy configuration, configure this attribute to specify the server port to be returned for calls to request.getServerPort(). See Proxy Support for more information.
     
    redirectPort-- If this Connector is supporting non-SSL requests, and a request is received for which a matching <security-constraint> requires SSL transport, Catalina will automatically redirect the request to the port number specified here.
     
    scheme Set-- this attribute to the name of the protocol you wish to have returned by calls to request.getScheme(). For example, you would set this attribute to "https" for an SSL Connector. The default value is "http". See SSL Support for more information.
     
    secure Set-- this attribute to true if you wish to have calls to request.isSecure() to return true for requests received by this Connector (you would want this on an SSL Connector). The default value is false.
     
    URIEncoding-- This specifies the character encoding used to decode the URI bytes, after %xx decoding the URL. If not specified, ISO-8859-1 will be used. 
     
    useBodyEncodingForURI This specifies if the encoding specified in contentType should be used for URI query parameters, instead of using the URIEncoding. This setting is present for compatibility with Tomcat 4.1.x, where the encoding specified in the contentType, or explicitely set using Request.setCharacterEncoding method was also used for the parameters from the URL. The default value is false. 
     
    xpoweredBy-- Set this attribute to true to cause Tomcat to advertise support for the Srevlet specification using the header recommended in the specification. The default value is false.
      

  2.   

    Here is you need:acceptCount ----The maximum queue length for incoming connection requests when all possible request processing threads are in use. Any requests received when the queue is full will be refused. The default value is 10.
     
    address For ----servers with more than one IP address, this attribute specifies which address will be used for listening on the specified port. By default, this port will be used on all IP addresses associated with the server.
     
    bufferSize ----The size (in bytes) of the buffer to be provided for input streams created by this connector. By default, buffers of 2048 bytes will be provided.
     
    compressableMimeTypes ----The value is a comma separated list of MIME types for which HTTP compression may be used. The default value is text/html,text/xml,text/plain.
     
    compression ----The Connector may use HTTP/1.1 GZIP compression in an attempt to save server bandwidth. The acceptable values for the parameter is "off" (disable compression), "on" (allow compression, which causes text data to be compressed), "force" (forces compression in all cases), or a numerical integer value (which is equivalent to "on", but specifies the minimum amount of data before the output is compressed). If the content-length is not known and compression is set to "on" or more aggressive, the output will also be compressed. If not specified, this attribute is set to "off".
     
    connectionLinger---- The number of milliseconds during which the sockets used by this Connector will linger when they are closed. The default value is -1 (socket linger is disabled).
     
    connectionTimeout ----The number of milliseconds this Connector will wait, after accepting a connection, for the request URI line to be presented. The default value is 60000 (i.e. 60 seconds).
     
    disableUploadTimeout---- This flag allows the servlet container to use a different, longer connection timeout while a servlet is being executed, which in the end allows either the servlet a longer amount of time to complete its execution, or a longer timeout during data upload. If not specified, this attribute is set to "false".
     
    maxHttpHeaderSize ----The maximum size of the request and response HTTP header, specified in bytes. If not specified, this attribute is set to 4096 (4 KB).
     
    maxKeepAliveRequests ----The maximum number of HTTP requests which can be pipelined until the connection is closed by the server. Setting this attribute to 1 will disable HTTP/1.0 keep-alive, as well as HTTP/1.1 keep-alive and pipelining. Setting this to -1 will allow an unlimited amount of pipelined or keep-alive HTTP requests. If not specified, this attribute is set to 100.
     
    maxSpareThreads ----The maximum number of unused request processing threads that will be allowed to exist until the thread pool starts stopping the unnecessary threads. The default value is 50.
     
    maxThreads ----The maximum number of request processing threads to be created by this Connector, which therefore determines the maximum number of simultaneous requests that can be handled. If not specified, this attribute is set to 200.
     
    minSpareThreads ----The number of request processing threads that will be created when this Connector is first started. The connector will also make sure it has the specified number of idle processing threads available. This attribute should be set to a value smaller than that set for maxThreads. The default value is 4.
     
    noCompressionUserAgents ----The value is a comma separated list of regular expressions matching user-agents of HTTP clients for which compression should not be used, because these clients, although they do advertise support for the feature, have a broken implementation. The default value is an empty String (regexp matching disabled).
     
    port---- The TCP port number on which this Connector will create a server socket and await incoming connections. Your operating system will allow only one server application to listen to a particular port number on a particular IP address.
     
    restrictedUserAgents ----The value is a comma separated list of regular expressions matching user-agents of HTTP clients for which HTTP/1.1 or HTTP/1.0 keep alive should not be used, even if the clients advertise support for these features. The default value is an empty String (regexp matching disabled).
     
    server ----The Server header for the http response. Unless your paranoid, you won't need this feature. 
     
    socketBuffer ----The size (in bytes) of the buffer to be provided for socket output buffering. -1 can be specified to disable the use of a buffer. By default, a buffers of 9000 bytes will be used.
     
    strategy---- The thread pooling strategy which will be used. The default strategy does not use a master thread, but a more conventional strategy using a master listener thread can be used by setting "ms" as this attribute's value. The master strategy will work significantly better using the threadPriority attribute, which will apply only to the thread which listens on the server socket. This is set to lf by default. 
     
    tcpNoDelay---- If set to true, the TCP_NO_DELAY option will be set on the server socket, which improves performance under most circumstances. This is set to true by default.
     
    threadPriority ----The priority of the request processing threads within the JVM. The default value is java.lang.Thread#NORM_PRIORITY. See the JavaDoc for the java.lang.Thread class for more details on what this priority means. 
     
      

  3.   

    我不是说了吗?这段e文我在tomcat的文档里面早看过了。
    我理解不来。
    希望有中文的解释。
      

  4.   

    enableLookups="false"==>?
    如果为true,则可以通过调用request.getRemoteHost()进\r
    行DNS查询来得到远程客户端的实际主机名,若为false则不进行DNS查询,而是
    返回其ip地址 
    redirectPort="8443"==>?
    指定服务器正在处理http请求时收到了一个SSL传输请求后重定向\r
    的端口号 
    acceptCount="100"==>?
    指定当所有可以使用的处理请求的线程数都被使用时,可以放到处
    理队列中的请求数,超过这个数的请求将不予处理 
      

  5.   

    谢谢  tom2005(快乐着)<Connector
    port="8080"          ==>端口8080
    maxThreads="150"     ==>?线程数??
    minSpareThreads="25" ==>???
    maxSpareThreads="75" ==>???
    enableLookups="false"==>?DNS查询来得到远程客户端的实际主机名
    redirectPort="8443"  ==>?SSL传输请求后重定向的端口号
    acceptCount="100"    ==>?可以放到处理队列中的请求数
    debug="0"            ==>???
    connectionTimeout="20000"   ==>连接超时?
    disableUploadTimeout="true" ==>???
    />大侠继续帮忙!
      

  6.   

    Connector (表示客户端和service之间的连接): port          指定服务器端要创建的端口号,并在这个断口监听来自客户端的请求 
    minProcessors 服务器启动时创建的处理请求的线程数 
    maxProcessors 最大可以创建的处理请求的线程数 
    enableLookups 如果为true,则可以通过调用request.getRemoteHost()进行DNS查询来得到远程客户
                  端的实际主机名,若为false则不进行DNS查询,而是返回其ip地址 
    redirectPort  指定服务器正在处理http请求时收到了一个SSL传输请求后重定向的端口号 
    acceptCount   指定当所有可以使用的处理请求的线程数都被使用时,可以放到处理队列中的请求
                  数,超过这个数的请求将不予处理 google出来的
    connectionTimeout 指定超时的时间数(以毫秒为单位)
      

  7.   

    Connector (表示客户端和service之间的连接): port          指定服务器端要创建的端口号,并在这个断口监听来自客户端的请求 
    minProcessors 服务器启动时创建的处理请求的线程数 
    maxProcessors 最大可以创建的处理请求的线程数 
    enableLookups 如果为true,则可以通过调用request.getRemoteHost()进行DNS查询来得到远程客户
                  端的实际主机名,若为false则不进行DNS查询,而是返回其ip地址 
    redirectPort  指定服务器正在处理http请求时收到了一个SSL传输请求后重定向的端口号 
    acceptCount   指定当所有可以使用的处理请求的线程数都被使用时,可以放到处理队列中的请求
                  数,超过这个数的请求将不予处理
    connectionTimeout 指定超时的时间数(以毫秒为单位)google出来的
      

  8.   

    谢谢  tom2005(快乐着)
    谢谢  zcjl()