在启动spring boot 项目时报错,之前都是OK的,只是我引用了内置的tomcat包就报错了
org.springframework.boot spring-boot-starter-tomcat provided
网上搜索了一下,需要把scope改成编译方式即可!
org.springframework.boot spring-boot-starter-tomcat compile
友情提示:最好是不要引用内置tomcat,有坑?
本文共 401 字,大约阅读时间需要 1 分钟。
在启动spring boot 项目时报错,之前都是OK的,只是我引用了内置的tomcat包就报错了
org.springframework.boot spring-boot-starter-tomcat provided
网上搜索了一下,需要把scope改成编译方式即可!
org.springframework.boot spring-boot-starter-tomcat compile
友情提示:最好是不要引用内置tomcat,有坑?
转载于:https://my.oschina.net/alarm1673/blog/1808539