Spring Boot / Tomcat,“由于缺少ServletWebServerFactory bean而无法启动ServletWebServerApplicationContext”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot / Tomcat,“由于缺少ServletWebServerFactory bean而无法启动ServletWebServerApplicationContext”相关的知识,希望对你有一定的参考价值。

我知道还有其他问题,我已经检查了,但没有一个能解决我的问题。

非常简单的POM,准备就绪:我的应用程序可以与嵌入式Web服务器一起使用,所以我可以启动它...

<packaging>jar</packaging>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

非常简单的Boot类:

@SpringBootApplication
@RestController
public class SpringBootApp 

    public static void main(String[] args) 
        SpringApplication.run(SpringApplication.class, args);
    

    @RequestMapping(value = "/")
    public String hello() 
        return "Hello World from Tomcat";
    


尝试:

  • 扩展SpringBootServletInitializer类。
  • 将spring-boot-starter-parent更新为最新版本(2.1.3)。
  • 在application.properties中设置spring.profiles.active = default。
  • 在@Configuration类中手动注入TomcatWebServerFactory(ugh ...)。
  • 从我的.m2目录运行mvn依赖:purge-local-repository和removed / repository目录,用mvn clean install -U再次获取。

ETC ......我不明白为什么它不起作用,我虽然Spring Boot应该很容易。

由于缺少ServletWebServerFactory bean,无法启动ServletWebServerApplicationContext。

答案

SpringApplication.run()的第一个参数应该是您的应用程序的主要配置类。在你的情况下,它是SpringBootApp.class而不是SpringApplication.class。以下是Spring Boot应用程序的正确配置。

public static void main(String[] args)

    SpringApplication.run(SpringBootApp.class, args);

以上是关于Spring Boot / Tomcat,“由于缺少ServletWebServerFactory bean而无法启动ServletWebServerApplicationContext”的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot启动过程:Spring Boot内嵌Tomcat启动

Spring Boot配置Tomcat

在 Tomcat 上使用 Spring Boot 进行身份验证

Spring Boot 应用程序使用 spring-boot-starter-actuator 给出“无法启动 tomcat”异常

spring-boot中tomcat的默认连接池?

在 Spring Boot 上更改嵌入式 tomcat 版本