Java教程

SpringBoot连接Redis

本文主要是介绍SpringBoot连接Redis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

依赖

<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
    <version>2.6.5</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-pool2</artifactId>
</dependency>

配置redis的IP地址和端口号

redis:
 host: ip地址
 port: 6379
这篇关于SpringBoot连接Redis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!