springboot-redis maven pom

2022-10-10  本文已影响0人  Alen_ab56

maven下pom中的坐标配置

springboot版本1.4以下

<!--引入 spring-boot-starter-redis(1.4版本前)-->

<dependency>

        <groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-redis</artifactId>

<version>1.3.2.RELEASE</version>

</dependency>

springboot版本1.4以上

<!--引入 spring-boot-starter-**data**-redis-->

<dependency>

  <groupId>org.springframework.boot</groupId>

  <artifactId>spring-boot-starter-data-redis</artifactId>

</dependency>

上一篇下一篇

猜你喜欢

热点阅读