Tomact运行
tomcat下载之后解压
启动
bin目录里面有一个 startup.bat
双击他就可以启动了
关闭
bin目录里面有一个 shutdown.bat
双击他就可以关闭了
修改端口
config
目录的 server.xml
文件修改 Connector
的 port
,然后重启
<Connector port="8700" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
如何在tomcat里面新建一个网站
webapps
目录保存着不同网站的源码
新建一个目录如"myhome"
在目录中要新建一个
WEB-INF
文件夹在
WEB-INF
文件夹中新建classes
和lib
文件夹在
WEB-INF
文件夹中新建web.xml
文件 内容如下
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0"
metadata-complete="true">
</web-app>
myhome中新建一个
index.jsp
文件 内容随意打开浏览器去访问
http://localhost:8700/myhome/