-
上传 war 包到 tomcat
上传位置:D:\apache-tomcat-9.0.62\webapps 目录下 -
运行 tomcat
双击运行 D:\apache-tomcat-9.0.62\bin\startup.bat
会自动生成 project.war 对应的 project 文件夹
命令执行完,project.war 项目就启动好了
-
访问路径
http://localhost:8080/project/xxx
(1) 端口号:D:\apache-tomcat-9.0.62\conf\server.xml 的 <Connector port
(2) 上下文路径:就是war包生成的文件夹名,此例 project
补充:部署多个war包也是这样操作 -
tomcat 部署 war 包,原项目的 server.port 和 context-path 失效
(1)war 包部署到 tomcat 时,server.port=9090 不生效,tomcat 运行时 访问端口 统一使用 tomcat 设置的端口 8080 等,位置是 D:\apache-tomcat-9.0.62\conf\server.xml
(2)war 包部署到 tomcat时,tomcat 默认以 webapps下的文件夹来作为 context-path路径的,配置文件中的 context-path 只是对于 springboot 打包成 jar 包,才有用。
相关文章
暂无评论...