? ? ? ? Tomcat 服务器是一个免费的开放源代码的 Web 应用服务器,属于轻量级应用服务器,在中小型系统和并发访问用户不是很多的场合下被普遍使用,是开发和调试JSP 程序的首选。对于一个初学者来说,可以这样认为,当在一台机器上配置好 Apache 服务器,可利用它响应 HTML(标准通用标记语言下的一个应用)页面的访问请求。实际上 Tomcat 是 Apache 服务器的扩展,但运行时它是独立运行的,所以当公司运行 tomcat 时,它实际上作为一个与 Apache 独立的进程单独运行的。
下载地址:Apache Tomcat? - Welcome!。
注意:路径不能有中文
1、双击 bin 目录下 startup.bat 即可启动 tomcat
?
2、打开浏览器,输入:127.0.0.1:8080,即可访问到 tomcat?
?备注:会遇到的一些情况
关闭:
1、正常关闭:
2、强制关闭:
.NET 我使用的是 80xx,Php 我使用的是 81xx,Java 我使用的是 82xx。
修改D:\apache-tomcat-8.0.0-RC3\conf\server.xml:
<Service name="Catalina">
<!--The connectors can use a shared executor, you can define one or more named thread pools-->
<!--
<Executor name="tomcatThreadPool" namePrefix="catalina-exec-"
maxThreads="150" minSpareThreads="4"/>
-->
<!-- 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="8200" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
注意:修改后需要重启 tomcat?
运行:D:\apache-tomcat-8.0.0-RC3\bin\startup.bat,如果窗口没有立即关闭,就代表成功了。
1、直接部署
????????将网站直接拷贝到:D:\apache-tomcat-8.0.0-RC3\webapps
????????或者将项目打包成 war 的压缩包类型,将其放到 webapps 下
2、通过配置文件
在D:\apache-tomcat-8.0.0-RC3\conf\Catalina\localhost下面建立一个naming.xml文件,内容如下:
<Context docBase="E:\Workspaces\Naming\1\WebRoot" debug="0" privileged="true">
</Context>
注意:虚拟路径就是文件名
效果:
?
?当点击 Manager App 的时候,会要求输入用户名和密码,可以在?D:\apache-tomcat-8.0.0-RC3\conf\tomcat-users.xml 中增加用户名,如下:
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager-gui"/>
<user username="admin" password="123456" roles="manager-gui"/>
</tomcat-users>
注意:这是因为 Tomcat 支持 JAAS。
? ? ? ? 由于 tomcat 是开源免费的,因此被广泛运用于中小型企业中作为服务器。同时是学习性价比比较低的一门技术。因此能够熟练的使用 tomcat 将会是面试的一个加分点。好啦本文就到此为止啦,希望能够对各位小伙伴有所帮助哦。