springboo05-redis
springboot中使用redis:
(1).使用redis工具类手动操作缓存
(2).使用cacheable注解到方法头,自动创建缓存数据
1.安装redis
https://github.com/dmajkic/redis/downloads
下载后解压:
cmd中启动redis:
启动:
D:
cd D:\Program Files\redis2.4.5\64bit
redis-server.exe redis.conf
2.安装Redis Desktop Manager工具操作redis:
3.开始编码
添加redis依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
</dependency>
配置redis
package com.mlxs.springboot05.redis; import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.CachingConfigurerSupport;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.interceptor.KeyGenerator;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map; /**
* RedisConfig类描述: redis配置类
*
* @author yangzhenlong
* @since 2017/2/16
*/
@Configuration
@EnableCaching
public class RedisConfig extends CachingConfigurerSupport{ /**
* key生成策略
* @return
*/
@Bean
public KeyGenerator keyGenerator(){
return new KeyGenerator() {
@Override
public String generate(Object targetClass, Method targetMethod, Object... params) {
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(targetClass.getClass().getName());
stringBuffer.append("." + targetMethod.getName());
for (Object param : params){
stringBuffer.append("_" + param.toString());
} return stringBuffer.toString();
}
};
} /**
* redis缓存配置
* @param redisTemplate
* @return
*/
@Bean
public CacheManager cacheManager(RedisTemplate redisTemplate){
RedisCacheManager redisCacheManager = new RedisCacheManager(redisTemplate);
redisCacheManager.setDefaultExpiration(60 * 5);//设置过期时间 单位:秒 Map<String, Long> expires = new HashMap<>();
expires.put("test", 300L);
redisCacheManager.setExpires(expires);//设置value过期时间
return redisCacheManager;
} /**
* 设置redisTemplate
* @param factory
* @return
*/
@Bean
public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory){
StringRedisTemplate stringRedisTemplate = new StringRedisTemplate(factory); //设置序列化方式
Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
jackson2JsonRedisSerializer.setObjectMapper(objectMapper);
stringRedisTemplate.setValueSerializer(jackson2JsonRedisSerializer); stringRedisTemplate.afterPropertiesSet();
return stringRedisTemplate;
}
}
3.1 使用redis工具类,手动操作redis
package com.mlxs.springboot05.redis.use01; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.stereotype.Component; import java.util.concurrent.TimeUnit; /**
* RedisUtil类描述:
*
* @author yangzhenlong
* @since 2017/2/16
*/
@Component
public class RedisUtil { @Autowired
private RedisTemplate redisTemplate; /**
* 根据key删除
* @param key
*/
public void remove(String key){
if(this.isExistKey(key)){
redisTemplate.delete(key);
}
} /**
* 根据key批量删除
* @param keys
*/
public void remove(String... keys){
for(String key : keys){
this.remove(key);
}
} /**
* 根据key判断是否存在对应的value
* @param key
* @return
*/
public boolean isExistKey(String key){
return redisTemplate.hasKey(key);
} /**
* 根据key获取值
* @param key
* @return
*/
public Object get(String key){
ValueOperations valueOperations = redisTemplate.opsForValue();
return valueOperations.get(key);
} /**
* 写入缓存
* @param key
* @param value
* @return
*/
public boolean set(String key, Object value){
try {
ValueOperations valueOperations = redisTemplate.opsForValue();
valueOperations.set(key, value);
return true;
}catch (Exception e){
e.printStackTrace();
return false;
}
} /**
* 写入缓存
* @param key
* @param value
* @param expireTime
* @return
*/
public boolean set(String key, Object value, Long expireTime){
try {
ValueOperations valueOperations = redisTemplate.opsForValue();
valueOperations.set(key, value);
redisTemplate.expire(key, expireTime, TimeUnit.SECONDS);
return true;
}catch (Exception e){
e.printStackTrace();
return false;
}
} }
测试工具类:
import com.mlxs.springboot05.redis.MainApp;
import com.mlxs.springboot05.redis.use01.RedisUtil;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.Arrays;
import java.util.List; /**
* Use01Test类描述:
*
* @author yangzhenlong
* @since 2017/2/16
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(MainApp.class)
public class Use01Test { @Autowired
private RedisUtil redisUtil; @Test
public void test(){
//设置值
List<String> stringList = Arrays.asList("aaa", "bbb", "ccc");
boolean setResult = redisUtil.set("strList", stringList);
System.out.println("保存redis结果:" + setResult); //获取值
Object getResult = redisUtil.get("strList");
System.out.println("查询redis结果:" + getResult);
}
}
查看测试结果:
3.2 使用@Cacheable 注解,自动添加缓存
package com.mlxs.springboot05.redis.use02; import org.springframework.cache.annotation.Cacheable;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; /**
* TestMethod类描述:
*
* @author yangzhenlong
* @since 2017/2/16
*/
@RestController
@RequestMapping("/redis")
public class RedisController { @RequestMapping("/str/{str}")
@Cacheable(value = "redisTest")
public String queryStr(@PathVariable String str){
System.out.println("---请求参数---" + str); return "queryStr return: " + str;
}
}
启动mainApp后,访问:http://localhost:8080/redis/str/8888
发现后台打印:
当再次请求http://localhost:8080/redis/str/8888,发现后台没有打印任何数据,说明直接请求redis返回结果,查看redis:
可以看到redis中已经有数据了。
springboo05-redis的更多相关文章
- 使用redis构建可靠分布式锁
关于分布式锁的概念,具体实现方式,直接参阅下面两个帖子,这里就不多介绍了. 分布式锁的多种实现方式 分布式锁总结 对于分布式锁的几种实现方式的优劣,这里再列举下 1. 数据库实现方式 优点:易理解 缺 ...
- Ignite性能测试以及对redis的对比
测试方法 为了对Ignite做一个基本了解,做了一个性能测试,测试方法也比较简单主要是针对client模式,因为这种方法和使用redis的方式特别像.测试方法很简单主要是下面几点: 不作参数优化,默认 ...
- mac osx 安装redis扩展
1 php -v查看php版本 2 brew search php|grep redis 搜索对应的redis ps:如果没有brew 就根据http://brew.sh安装 3 brew ins ...
- Redis/HBase/Tair比较
KV系统对比表 对比维度 Redis Redis Cluster Medis Hbase Tair 访问模式 支持Value大小 理论上不超过1GB(建议不超过1MB) 理论上可配置(默认配置1 ...
- Redis数据库
Redis是k-v型数据库的典范,设计思想及数据结构实现都值得学习. 1.数据类型 value支持五种数据类型:1.字符串(strings)2.字符串列表(lists)3.字符串集合(sets)4.有 ...
- redis 学习笔记(2)
redis-cluster 简介 redis-cluster是一个分布式.容错的redis实现,redis-cluster通过将各个单独的redis实例通过特定的协议连接到一起实现了分布式.集群化的目 ...
- redis 学习笔记(1)
redis持久化 snapshot数据快照(rdb) 这是一种定时将redis内存中的数据写入磁盘文件的一种方案,这样保留这一时刻redis中的数据镜像,用于意外回滚.redis的snapshot的格 ...
- python+uwsgi导致redis无法长链接引起性能下降问题记录
今天在部署python代码到预生产环境时,web站老是出现redis链接未初始化,无法连接到服务的提示,比对了一下开发环境与测试环境代码,完全一致,然后就是查看各种日志,排查了半天也没有查明是什么原因 ...
- nginx+iis+redis+Task.MainForm构建分布式架构 之 (redis存储分布式共享的session及共享session运作流程)
本次要分享的是利用windows+nginx+iis+redis+Task.MainForm组建分布式架构,上一篇分享文章制作是在windows上使用的nginx,一般正式发布的时候是在linux来配 ...
- windows+nginx+iis+redis+Task.MainForm构建分布式架构 之 (nginx+iis构建服务集群)
本次要分享的是利用windows+nginx+iis+redis+Task.MainForm组建分布式架构,由标题就能看出此内容不是一篇分享文章能说完的,所以我打算分几篇分享文章来讲解,一步一步实现分 ...
随机推荐
- selenium的等待~
既然使用了selenium,那么必然牺牲了一些速度上的优势,但由于公司网速不稳定,导致频频出现加载报错,这才意识到selenium等待的重要性. 说到等待又可以分为3类, 1.强制等待 time.sl ...
- Redis主从复制与高可用方案
redis简单介绍 Redis 是完全开源免费的,遵守BSD协议,是一个高性能的key-value数据库.Redis与其他key – value缓存产品有以下三个特点: 支持数据的持久化,可以将内存中 ...
- 借网站日记分析~普及一下Pandas基础
对网站日记分析其实比较常见,今天模拟演示一下一些应用场景,也顺便说说Pandas,图示部分也简单分析了下 1.数据清洗¶ 一般数据都不可能直接拿来用的,或多或少都得清理一下,我这边就模拟一下清洗完 ...
- 我眼中的 Docker(二)Image
Docker 安装 如何安装 docker 详见官网: installation 或者 中文指南. 不过 linux 上我推荐用 curl 安装,因为 apt-get 中源要么没有 docker,要么 ...
- js 判断字符串中是否包含某个字符串
String对象的方法 方法一: indexOf() (推荐) var str = "123"; console.log(str.indexOf("3") ...
- Vue--组件嵌套
1.全局注册: 组件放到components文件夹内,建议组件名是什么行为的name名就是什么 main.js 引入组件:import Users from '组件位置' 注册全局组件:Vue.com ...
- 【洛谷P2585】三色二叉树
题目大意:给定一个二叉树,可以染红绿黄三种颜色,要求父节点和子节点的颜色不同,且如果一个节点有两个子节点,那么两个子节点之间的颜色也不同.求最多和最少有多少个节点会被染成绿色. 题解:加深了对二叉树的 ...
- 用 Homebrew 带飞你的 Mac
文章目录 资料 安装 基本用法 源镜像 Homebrew也称brew,macOS下基于命令行的最强大软件包管理工具,使用Ruby语言开发.类似于CentOS的yum或者Ubuntu的apt-get,b ...
- Flask block继承和include包含
继承(Block)的本质是代码替换,继承我认为就是把完整的html文件继承到一个不完整的html文件里. 被继承html文件: <!DOCTYPE html> <html lang= ...
- bzoj1791[IOI2008]Island岛屿(基环树+DP)
题目链接:https://www.lydsy.com/JudgeOnline/problem.php?id=1791 题目大意:给你一棵n条边的基环树森林,要你求出所有基环树/树的直径之和.n< ...