springboot项目打war部署服务器 + 部署后启动本地项目报错:Unable to start ServletWebServerApplicationContext due to miss

一、springboot项目打war部署服务器

1.打war 转载https://blog.csdn.net/gs838251686/article/details/83015989

2.将war文件上传到服务器的 /usr/local/tomcat/webapps/目录下,可用ls查看。

3.将原ROOT文件夹删除,将上传的war文件改名为ROOT。

4.启动tomcat,cd到tomcat的bin目录下,输入 ./startup.sh。

5.postman测试,访问地址不用加项目名。

 

二、部署后启动本地项目报错:Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean.

转载:很实用!https://blog.csdn.net/qq_41725214/article/details/88958339

你可能感兴趣的:(maven项目部署)