1、SpringBoot集成Redis

1.1 核心依赖

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

1.2 配置文件

# 端口
server:
port: 8008
spring:
application:
# 应用名称
name: node08-boot-redis
# redis 配置
redis:
host: 127.0.0.1
#超时连接
timeout: 1000ms
jedis:
pool:
#最大连接数据库连接数,设 0 为没有限制
max-active: 8
#最大等待连接中的数量,设 0 为没有限制
max-idle: 8
#最大建立连接等待时间。如果超过此时间将接到异常。设为-1表示无限制。
max-wait: -1ms
#最小等待连接中的数量,设 0 为没有限制
min-idle: 0

这样Redis的环境就配置成功了,已经可以直接使用封装好的API了。

1.3 简单测试案例

import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.concurrent.TimeUnit;
@RestController
public class RedisController {
@Resource
private StringRedisTemplate stringRedisTemplate ;
@RequestMapping("/setGet")
public String setGet (){
stringRedisTemplate.opsForValue().set("cicada","smile");
return stringRedisTemplate.opsForValue().get("cicada") ;
}
@Resource
private RedisTemplate redisTemplate ;
/**
* 设置 Key 的有效期 10 秒
*/
@RequestMapping("/setKeyTime")
public String setKeyTime (){
redisTemplate.opsForValue().set("timeKey","timeValue",10, TimeUnit.SECONDS);
return "success" ;
}
@RequestMapping("/getTimeKey")
public String getTimeKey (){
// 这里 Key 过期后,返回的是字符串 'null'
return String.valueOf(redisTemplate.opsForValue().get("timeKey")) ;
}
}

1.4 自定义序列化配置

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
import java.io.Serializable;
/**
* Redis 配置
*/
@Configuration
public class RedisConfig {
private static final Logger LOGGER = LoggerFactory.getLogger(RedisConfig.class) ;
/**
* 序列化配置
*/
@Bean
public RedisTemplate<String, Serializable> redisTemplate
(LettuceConnectionFactory redisConnectionFactory) {
LOGGER.info("RedisConfig == >> redisTemplate ");
RedisTemplate<String, Serializable> template = new RedisTemplate<>();
template.setKeySerializer(new StringRedisSerializer());
template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
template.setConnectionFactory(redisConnectionFactory);
return template;
}
}

1.5 序列化测试

import com.boot.redis.entity.User;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.List;
@RestController
public class SerializeController {
@Resource
private RedisTemplate redisTemplate ;
@RequestMapping("/setUser")
public String setUser (){
User user = new User() ;
user.setName("cicada");
user.setAge(22);
List<String> list = new ArrayList<>() ;
list.add("小学");
list.add("初中");
list.add("高中");
list.add("大学");
user.setEducation(list);
redisTemplate.opsForValue().set("userInfo",user);
return "success" ;
}
@RequestMapping("/getUser")
public User getUser (){
return (User)redisTemplate.opsForValue().get("userInfo") ;
}
}

最新文章

  1. boosting、adaboost
  2. create feature from text file
  3. BZOJ2594: [Wc2006]水管局长数据加强版
  4. c#操作oracle的通用类
  5. iOS 文本转语音(TTS)详解:Swift
  6. 取消input默认样式
  7. vue.js用法和特性详解
  8. Use LiveCD to acquire images from a VM
  9. Nginx 自动补全url地址补全最后的斜线
  10. JS验证邮箱格式是否正确 实例代码
  11. php中调用这个功能可以在web页面中显示hello world这个经典单词
  12. iOS.Dev.Guru
  13. SQLServerException:将截断字符串或二进制数据的解决方法
  14. 使用 C# 开发智能手机软件:推箱子(十四)
  15. Android UsageStats:应用根据启动次数、启动时间、应用名称排序
  16. 洛谷P2024 食物链 [NOI2001] 并查集
  17. BZOJ2331:[SCOI2011]地板——题解
  18. [BZOJ1040][ZJOI2008]骑士(环套树dp)
  19. 关于React Hooks,你不得不知的事
  20. Java 之Object 类

热门文章

  1. 简单谈谈网络抓包,特别是thrift 接口
  2. 阿里云centos7安装mysql8数据库
  3. 多图详解Go中的Channel源码
  4. Lesson_strange_words1
  5. WPF时间长度自定义选择控件TimeSpanBox
  6. Oracle误删数据的恢复
  7. Spring Cloud Gateway 跨域 CORS 配置方式实现
  8. vue 侦听器watch 之 深度监听 deep
  9. 十五:SQL注入之oracle,Mangodb注入
  10. 【MySQL】ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing