打成WAR包在TOMCAT启动,报上述错
将JETTY相关依赖注释掉
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<scope>${jetty.scope}</scope>
</dependency>-->
报以下错
Unable to start ServletWebServerApplicationContext due to missing ServletWebServerFactory bean
查看依赖:
发现TOCMAT相关依赖被exclusion
注释掉
<!-- spring-boot使用jetty容器配置begin -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>