一.Apache Tomcat 安装
1. 在安装 tomcat 之前确保 java jdk 已经安装成功
2. 安装 Tomcat 的安装包(如果是解压包, 可以直接解压你需要的目录)
3.tomocat 默认端口是 8080,可以在 conf 的 server.xml 中配置
二. 使用 idea 部署
1.edit config 添加 tomcat 服务器
点击 + 选择 tomcat server–>local
2. 在弹框中配置相关信息
填写 name 删除 before launch 中的所有东西
点击 Deployment 点击 + 添加 artifacts
选择需要部署的 exploded 文件 选择后 删除 before launch 中的所有内容
配置好之后,启动服务器
点击启动后,启动成功,会显示如下图,并自动浏览器打开页面
自动打开地址
http://localhost:8080/ 访问 web.xml 中配置的默认页面地址 xxxxxx
<welcome-file-list>
<welcome-file>xxxxx</welcome-file>
</welcome-file-list>
原文链接:https://www.cnblogs.com/qiqijiayousue/p/3574211.html
正文完