标签:driver connector toc 发布 sys redirect 主机名 tom tps
tomcat官网:http://tomcat.apache.org/
文件夹作用:
启动,关闭tomcat
可以配置主机的端口号
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
可以配置主机的名称
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
请你谈谈网站是如何进行访问的?
1.输入一个域名;回车
2.检查本机的 C:\Windows\System32\drivers\etc\hosts 配置文件下有没有这个域名映射;
? 1.有:直接返回对应的ip地址
127.0.0.1 localhost
? 2.没有:去DNS服务器上找,找到的话就返回,找不到就返回找不到;
网站应该有的结构
--web apps :Tomcat服务器的web目录
-ROOT
- ccstudy :网站的目录名
-WEB-INF
-classes :java程序
-lib:web应用所依赖的jar包
-web.xml :网站配置文件
- index.html:默认的首页
- static
-css
-style.css
-js
-img
-......
标签:driver connector toc 发布 sys redirect 主机名 tom tps
原文地址:https://www.cnblogs.com/duoruic/p/14924789.html