标签:blog http io os 使用 ar java 文件 sp
主要配置tomcat/conf目录下的server.xml文件
tomcat目录
C:/Program Files/Apache Software Foundation/Tomcat 6.0/conf
1。先找到8080端口,把端口改为80。
<!-- A "Connector" represents an endpoint by which requests are received and responses are returned. Documentation at : Java HTTP Connector: /docs/config/http.html (blocking & non-blocking) Java AJP Connector: /docs/config/ajp.html APR (HTTP/AJP) Connector: /docs/apr.html Define a non-SSL HTTP/1.1 Connector on port 8080 --> <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> <!-- A "Connector" using the shared thread pool-->
备注:设置Connector 节点的port="80"。
2。配置项目目录访问。
<Host name="localhost" appBase="webapps/i18n" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context path="" docBase="." /> <Context path="/i18n" docBase="." />
备注:设置Host 节点的name=“localhost”,name 是设置访问方式,用localhost访问的话自己本机直接使用localhost就可以访问web项目了,其它局域网同事直接通过本地连接的IP就可以访问了。 appBase=“webapps/i18n”,webapps应用程序目录,这里我设置的是webapps/i18n的相对目录。项目绝对路径就是(C:/Program Files/Apache Software Foundation/Tomcat 6.0/webapps/i18n)也就是tomcat下的webapps下的i18n部署的项目目录。
以下是从网上找的资料大家如果不懂appBase跟docBase的可以看看。
关于tomcat那些事情 - tomcat6.0 配置ip地址访问不用加端口和项目名
标签:blog http io os 使用 ar java 文件 sp
原文地址:http://www.cnblogs.com/myfield/p/3997921.html