引入redis依赖包:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
redis配置文件:
spring:
#redis 配置
#数据库索引(默认为0)
redis:
database: 0
#服务器连接地址
host: 127.0.0.1
#端口
port: 6379
#密码
password:
# 连接池最大连接数(使用负值表示没有限制) 默认 8
lettuce:
pool:
max-active: 8
# 连接池最大阻塞等待时间(使用负值表示没有限制) 默认 -1
max-wait: -1
# 连接池中的最大空闲连接 默认 8
max-idle: 8
# 连接池中的最小空闲连接 默认 0
min-idle: 0
创建类:
注意:尽量创建一个config包 ,在包里面创建这个类
package com.jk.lky.config;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@Configuration
public class RedisConfig {
//操作redis的工具类
@Autowired
private RedisTemplate redisTemplate;
@Bean
public RedisTemplate redisTemplateInit() {
//设置序列化Key的实例化对象
redisTemplate.setKeySerializer(new StringRedisSerializer());
//设置序列化Value的实例化对象
redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
return redisTemplate;
}
}
启动redis服务:redis-server.exe redis.windows.conf
注意:要在解压之后的目录下输入cmd 接着回车弹出黑窗口 输入命令即可 或 直接打开cmd黑窗口通过cd切换到解压的目录下
运行redis可视化工具:
执行成功!