本文主要是介绍SpringBoot使用Jedis,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
导入Jedsi的pom坐标
不需要添加版本号,否则可能报错:java.lang.NoClassDefFoundError: redis/clients/jedis/GeoUnit
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
在Application.yml中配置使用Jedis
spring:
redis:
port: 6379
host: localhost
client-type: jedis
这篇关于SpringBoot使用Jedis的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!