当我启用swagger时,spring启动应用程序无法启动

t30tvxxf  于 2021-07-24  发布在  Java
关注(0)|答案(1)|浏览(398)

说明:
试图调用不存在的方法。尝试从以下位置进行:org.springframework.data.rest.core.support.unwrappingrepositoryinvokerfactory.(unwrappingrepositoryinvokerfactory)。java:57)
以下方法不存在:org.springframework.plugin.core.pluginregistry.of(ljava/util/list;)lorg/springframework/plugin/core/pluginregistry;该方法的类org.springframework.plugin.core.pluginregistry可从以下位置获得:jar:file:/c:/users/182588/.m2/repository/org/springframework/plugin/spring-plugin-core/1.2.0.release/spring-plugin-core-1.2.0.release.jar/org/springframework/plugin/core/pluginregistry.class
已从以下位置加载类层次结构:

org.springframework.plugin.core.PluginRegistry: file:/C:/Users/182588/.m2/repository/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/spring-plugin-core-1.2.0.RELEASE.jar

措施:更正应用程序的类路径,使其包含org.springframework.plugin.core.pluginregistry的一个兼容版本
我在pom.xml中添加了以下依赖性

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>
ekqde3dh

ekqde3dh1#

添加此依赖项,它可能会起作用

<dependency>
            <groupId>org.springframework.plugin</groupId>
            <artifactId>spring-plugin-core</artifactId>
            <version>1.2.0.RELEASE</version>
 </dependency>

相关问题