如何在idea把springboot项目部署到tomcat上?(已解决)

时间:2024-03-23 17:58:40

1.首先要在pom.xml上如下配置,因为idea内置tomcat(这里要打成war包)。

如何在idea把springboot项目部署到tomcat上?(已解决)

如何在idea把springboot项目部署到tomcat上?(已解决)

2.然后在启动类这样配置:

如何在idea把springboot项目部署到tomcat上?(已解决) 

3. 点击idea的【Maven projects】,双击【package】,打包成war包。

如何在idea把springboot项目部署到tomcat上?(已解决)

4.记住控制台路径上生成的war包 

如何在idea把springboot项目部署到tomcat上?(已解决)

5.把路径上的war包复制到tomcat目录下的webapps下,然后到bin目录下双击 startup.bat启动tomcat,访问localhost:8080/war包名/url即可。