实现在tomcat中跑多个服务器实例_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 实现在tomcat中跑多个服务器实例

实现在tomcat中跑多个服务器实例

 2011/1/11 8:56:42  javayestome  http://javayestome.javaeye.com  我要评论(0)
  • 摘要:Server.xml注释Server:Server只能有一个,它代表整个JVM,server可以包含一个或者多个serviceService:service包含一个或者多个connector和container。Conector:connector用来为container接收请求,和返回响应的。Engine:engine是顶层container,它可以包含一个或者多个hostHost:host是虚拟主机,它可以包含一个或者多个contextContext
  • 标签:实现 Tomcat 实例 服务器 服务

Server.xml 注释

  Server:

  Server只能有一个,它代表整个JVM,server可以包含一个或者多个service

  Service

  service包含一个或者多个connector和container。

  Conector:

  connector用来为container接收请求,和返回响应的。

  Engine:

  engine是顶层container,它可以包含一个或者多个host

  Host:

  host是虚拟主机,它可以包含一个或者多个context

  Context:

  context对应一个web application。

  最近抽时间研究了一下tomcat的源码,发现可以增加多个Service到server.xml中,实现在tomcat中跑多个服务器 实例,在Server.xml中增加如下配置信息:

  Xml代码

  <Service name="Catalina2">

  <Connector port="8081"

  maxThreads="150" minSpareThreads="25" maxSpareThreads="75"

  enableLookups="false" redirectPort="8443" acceptCount="100"

  debug="0" connectionTimeout="20000"

  disableUploadTimeout="true" />

  <Connector port="8010"

  enableLookups="false" redirectPort="8443" debug="0"

  protocol="AJP/1.3" />

  <Engine name="Catalina" defaultHost="localhost" debug="0">

  <Logger className="org.apache.catalina.logger.FileLogger"

  prefix="catalina2_log." suffix=".txt"

  timestamp="true"/>

  <Realm className="org.apache.catalina.realm.UserDatabaseRealm"

  debug="0" resourceName="UserDatabase"/>

  <Host name="localhost" debug="0" appBase="webapps2"

  unpackWARs="true" autoDeploy="true"

  xmlValidation="false" xmlNamespaceAware="false">

  <Logger className="org.apache.catalina.logger.FileLogger"

  directory="logs"?? prefix="localhost2_log." suffix=".txt"

  timestamp="true"/>

  </Host>

  </Engine>

  </Service>

发表评论
用户名: 匿名