Springbootspring-boot-starter-redis包报错 :unknown

Posted 小破孩楼主

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springbootspring-boot-starter-redis包报错 :unknown相关的知识,希望对你有一定的参考价值。

springboot集成redis时,引入spring-boot-starter-redis包报错,maven找不到这个资源.如下图:

我的项目中,spring boot是 用的2.0.4版本.spring-boot-starter-redis在springboot 1.4.7版本后,改为了spring-boot-starter-data-redis,

所以如果想集成redis,应该引用spring-boot-starter-data-redis.

如果就是想用前者,那么就应该加上版本号.

 
      

 <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-redis</artifactId>
        <version>1.4.7.RELEASE</version>
 </dependency>

以上是关于Springbootspring-boot-starter-redis包报错 :unknown的主要内容,如果未能解决你的问题,请参考以下文章