在springboot引入redis及redis的工具类的运用

Posted 阿啄debugIT

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在springboot引入redis及redis的工具类的运用相关的知识,希望对你有一定的参考价值。

1、在maven中,添加依赖

<!--reids-->
<dependency>
	<groupId>redis.clients</groupId>
	<artifactId>jedis</artifactId>
	<version>2.7.3</version>
</dependency>
<dependency>
	<groupId>org.springframework.data</groupId>
	<artifactId>spring-data-redis</artifactId>
</dependency>
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

2、在springboot启动时,随时启动redis


import org.springframework.cache.CacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.cache.Redi

以上是关于在springboot引入redis及redis的工具类的运用的主要内容,如果未能解决你的问题,请参考以下文章

Shiro整合Springboot缓存之Redis实现

Redis---整合SpringBoot篇

SpringBoot 整合其他框架 -- SpringBoot整合Redis

(入门SpringBoot)SpringBoot结合redis

springboot整合redis

springboot 集成redis 和http请求