首页 > 技术文章 > Unable to start web server; nested exception is org.springframework.context.ApplicationContextException

tooyi 2020-09-14 14:25 原文

项目报错:Unable to start web server; nested exception is org.springframework.context.ApplicationContextException

解决方案一#

<!-- 使用嵌入式Jetty作为web container -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

解决方案二#
出现了这个异常,
只要再pom文件里加上对应的 container deps:

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

推荐阅读