Caused by: java.lang.IllegalStateException: Unable to load cache item

这个问题我有很认真的百度过,会有很多原因导致。


错误如图:


解决问题:

你可能没有填加jar包

<!-- 添加Eureka的依赖 -->
<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-eureka</artifactId>
   <version>1.2.6.RELEASE</version>
   <exclusions>
      <exclusion>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpclient</artifactId>
      </exclusion>
   </exclusions>
</dependency>



猜你喜欢

转载自blog.csdn.net/paranoria/article/details/79915108