java.lang.ClassNotFoundException:org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener

vmdwslir  于 2023-04-30  发布在  Spring
关注(0)|答案(1)|浏览(142)

我用的是springboot 1。4与 www.example.com 我在WL服务器上部署我的应用程序时,出现了一个错误,如

java.lang.ClassNotFoundException:org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener

任何人都可以帮助这个。

btqmn9zl

btqmn9zl1#

它被分离到遗留项目中,因此您只需将以下依赖项添加到项目中:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-legacy</artifactId>
    <version>2.1.0.RELEASE</version>
</dependency>

相关问题