标签:tomcat
Tomcat入门文档
一、下载地址:Apache官网下载并安装
二、配置环境变量如下图(我的电脑/属性/高级/环境变量/新建/JAVA_HOME)
安装配置完进行测试是否成功
1 启动Tomcat
2 输入网址http://localhost:8080/或者http://127.0.0.1:8080/
3 打开Apache官网则正确,否则错误。
4 关闭Tomcat(ctrl+C)
三、基本认识
1.安装文件夹的作用
编号 | 目录名称 | 作用 |
1 | bin | 所有可执行命令,启动和关闭服务器的命令就在此文件夹中 |
2 | conf | 配置文件夹 |
3 | lib | 库文件夹 |
4 | logs | 日志文件夹 |
5 | webapps | Web应用程序存放的目录,web项目保存到此目录中可发布 |
6 | work | 临时文件夹(.java/.class) |
2.修改端口号
在conf/server.xml文件中
<Connector port="8080"protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443"/>
<Connector port="80"protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443"/>
重启服务器才生效
3.配置虚拟目录
3.1 新建文件夹,并建立WEB-INF子文件夹,把webapps\ROOT\WEB-INF中web.xml拷入web-inf中。如E:\000\JavaWeb\WEB-INF下有web.xml文件一样。
3.2 然后再修改conf/server.xml文件,在最后添加语句
<Context path="/newudbful"docBase="E:\000\JavaWeb" reloadable="true"/>
如:
注意:在配置多个虚拟目录时,Path不能重名;在server.xml中一定不能有中文注释,否则无法启动Tomcat。
3.3 重启服务器,输入http://localhost/newudbful 会出如下界面
3.4 若出现HTTP Status 404错误则需再改conf/web.xml。把下面行的false改成如下的true。
<init-param>
<param-name>listings</param-name>
<param-value>true</param-value>
</init-param>
附:HTTP状态码说明
编号 | 状态码 | 表示的含义 | |
1 | 2XX | 请求成功 | |
2 | 3XX | 重定向 | |
3 | 4XX | 客户机中出现的错误 | |
403 | 禁止----即使有授权也不需要访问 | ||
404 | 服务器找不到指定的资源,文档不存在 | ||
4 | 5XX | 服务器中出现的错误 | |
500 | 服务器内部错误----因为意外情况,服务器不能完成请求 |
4. 配置首页
4.1 编写首页
<!doctype html>
<html>
<head>
<metacharset="UTF-8">
<title>udbful</title>
</head>
<body>
<center>
<H1>欢迎光临!!!</H1>
<H2>您好!!!</H2>
</center>
</body>
</html>
4.2 配置
方法一:在Tomcat中配置conf/web.xml
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
方法二:在虚拟目录文件web-inf/web.xml中添加新的目录
<welcome-file-list>
<welcome-file>main.htm</welcome-file>
</welcome-file-list>
以上内容参考javaweb开发实战经典(名师讲坛)。
本文出自 “走出地平线” 博客,请务必保留此出处http://udbful.blog.51cto.com/10601869/1682996
标签:tomcat
原文地址:http://udbful.blog.51cto.com/10601869/1682996