imedera 2020-09-01 21:19:16.160 restartedMain ERROR org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter Line:42 -
***************************
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call the method org.springframework.plugin.core.PluginRegistry.getPluginFor(Ljava/lang/Object;Lorg/springframework/plugin/core/Plugin;)Lorg/springframework/plugin/core/Plugin; but it does not exist. Its class, org.springframework.plugin.core.PluginRegistry, is available from the following locations:
jar:file:/D:/Program%20Files%20(x86)/apache-maven-3.6.3/repository/org/springframework/plugin/spring-plugin-core/2.0.0.RELEASE/spring-plugin-core-2.0.0.RELEASE.jar!/org/springframework/plugin/core/PluginRegistry.class
It was loaded from the following location:
file:/D:/Program%20Files%20(x86)/apache-maven-3.6.3/repository/org/springframework/plugin/spring-plugin-core/2.0.0.RELEASE/spring-plugin-core-2.0.0.RELEASE.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of org.springframework.plugin.core.PluginRegistry
Process finished with exit code 0
在启动spingboot 项目的时候,出现上述问题。一般是jar包冲突问题导致的。按照jar包冲突的解决方式就能解决掉。
解析:错误是因为导入的jar包 spring-plugin-core.2.0.0 导致的问题。可能是添加的依赖中重复添加了版本不一样。也可能是 导入的依赖包中也有相同的依赖。两次导入的包的版本不一致。
解决方式:
idea 解决maven 依赖版本冲突
版权声明:本文为m0_37626203原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。