java.lang.IllegalStateException: Failed to read Class-Path attribute from manifest of jar file spring-plugin-core-1.2.0.RELEASE.jar

前端 未结 6 397
南方客
南方客 2021-01-11 11:20

I am using STS 3.9 version with using to create starter spring boot project ->Web,jpa,mysql,rest combination.This is When i try to run the spring boot application is shows e

6条回答
  •  北海茫月
    2021-01-11 12:24

    This is because you might be having one of the jars in your maven cache corrupted, which is actually pointed out by IllegalStateException.

    Try removing the corrupted jar from your maven cache and re-build your application.

    In your case just delete this particular file and rebuild your application.

    file:/C:/Users/HP%20PC/.m2/repository/org/springframework/plugin/spring-plugin-core/1.2.0.RELEASE/**spring-plugin-core-1.2.0.RELEASE.jar
    

    For more on this topic please refer to this link : here.

提交回复
热议问题