spring 结合 redis 例子 (转)
好了费话不多说了,介绍下spring 结合redis是怎么操作数据的 这里我用了maven管理,由于简单嘛,依赖下包就行了..不用单独去依赖包,成了我的习惯
好了,下面是pom的代码
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>redis</groupId>
- <artifactId>redis</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <build>
- </build>
- <dependencies>
- <dependency>
- <groupId>org.springframework.data</groupId>
- <artifactId>spring-data-redis</artifactId>
- <version>1.0.2.RELEASE</version>
- </dependency>
- </dependencies>
- </project>
在pom里添加了redis spring客户端的依赖,那么所有的jar包都会帮你自动下载下来,是不是很方便啊,哈
下面是spring-context.xml代码
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:util="http://www.springframework.org/schema/util" xmlns:mvc="http://www.springframework.org/schema/mvc"
- xsi:schemaLocation="http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
- http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
- <!--注解说明 -->
- <context:annotation-config />
- <!-- 把标记了@Controller注解的类转换为bean -->
- <context:component-scan base-package="com.mkfree.**" />
- <!-- redis工厂 -->
- <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
- p:host-name="192.168.9.140" p:port="6379" p:password="87980879" />
- <!-- redis服务封装 -->
- <bean id="redisService" class="com.mkfree.redis.test.RedisService">
- </bean>
这里配置了一个跟spring 集成的redis客户端,ip port password自己定哦,这里我在redis配置文件了定义了需求密码认证,你们先不要用吧,为了简单起见
下面是RedisService,里面包含了对redis的方法,还有更多的方法没有去使用,这里当一个入门的小例子吧
- package com.mkfree.redis.test;
- import java.util.Set;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.beans.factory.annotation.Qualifier;
- import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
- import redis.clients.jedis.Jedis;
- /**
- * 封装redis 缓存服务器服务接口
- * @author hk
- *
- * 2012-12-16 上午3:09:18
- */
- public class RedisService {
- /**
- * 通过key删除(字节)
- * @param key
- */
- public void del(byte [] key){
- this.getJedis().del(key);
- }
- /**
- * 通过key删除
- * @param key
- */
- public void del(String key){
- this.getJedis().del(key);
- }
- /**
- * 添加key value 并且设置存活时间(byte)
- * @param key
- * @param value
- * @param liveTime
- */
- public void set(byte [] key,byte [] value,int liveTime){
- this.set(key, value);
- this.getJedis().expire(key, liveTime);
- }
- /**
- * 添加key value 并且设置存活时间
- * @param key
- * @param value
- * @param liveTime
- */
- public void set(String key,String value,int liveTime){
- this.set(key, value);
- this.getJedis().expire(key, liveTime);
- }
- /**
- * 添加key value
- * @param key
- * @param value
- */
- public void set(String key,String value){
- this.getJedis().set(key, value);
- }
- /**添加key value (字节)(序列化)
- * @param key
- * @param value
- */
- public void set(byte [] key,byte [] value){
- this.getJedis().set(key, value);
- }
- /**
- * 获取redis value (String)
- * @param key
- * @return
- */
- public String get(String key){
- String value = this.getJedis().get(key);
- return value;
- }
- /**
- * 获取redis value (byte [] )(反序列化)
- * @param key
- * @return
- */
- public byte[] get(byte [] key){
- return this.getJedis().get(key);
- }
- /**
- * 通过正则匹配keys
- * @param pattern
- * @return
- */
- public Set<String> keys(String pattern){
- return this.getJedis().keys(pattern);
- }
- /**
- * 检查key是否已经存在
- * @param key
- * @return
- */
- public boolean exists(String key){
- return this.getJedis().exists(key);
- }
- /**
- * 清空redis 所有数据
- * @return
- */
- public String flushDB(){
- return this.getJedis().flushDB();
- }
- /**
- * 查看redis里有多少数据
- */
- public long dbSize(){
- return this.getJedis().dbSize();
- }
- /**
- * 检查是否连接成功
- * @return
- */
- public String ping(){
- return this.getJedis().ping();
- }
- /**
- * 获取一个jedis 客户端
- * @return
- */
- private Jedis getJedis(){
- if(jedis == null){
- return jedisConnectionFactory.getShardInfo().createResource();
- }
- return jedis;
- }
- private RedisService (){
- }
- //操作redis客户端
- private static Jedis jedis;
- @Autowired
- @Qualifier("jedisConnectionFactory")
- private JedisConnectionFactory jedisConnectionFactory;
- }
下面是测试代码TestRedis.java
- package com.mkfree.redis.test;
- import java.util.Set;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- /**
- * redis spring 简单例子
- * @author hk
- *
- * 2012-12-22 上午10:40:15
- */
- public class TestRedis {
- public static void main(String[] args) throws InterruptedException {
- ApplicationContext app = new ClassPathXmlApplicationContext("classpath:spring-context.xml");
- //这里已经配置好,属于一个redis的服务接口
- RedisService redisService = (RedisService) app.getBean("redisService");
- String ping = redisService.ping();//测试是否连接成功,连接成功输出PONG
- System.out.println(ping);
- //首先,我们看下redis服务里是否有数据
- long dbSizeStart = redisService.dbSize();
- System.out.println(dbSizeStart);
- redisService.set("username", "oyhk");//设值(查看了源代码,默认存活时间30分钟)
- String username = redisService.get("username");//取值
- System.out.println(username);
- redisService.set("username1", "oyhk1", 1);//设值,并且设置数据的存活时间(这里以秒为单位)
- String username1 = redisService.get("username1");
- System.out.println(username1);
- Thread.sleep(2000);//我睡眠一会,再去取,这个时间超过了,他的存活时间
- String liveUsername1 = redisService.get("username1");
- System.out.println(liveUsername1);//输出null
- //是否存在
- boolean exist = redisService.exists("username");
- System.out.println(exist);
- //查看keys
- Set<String> keys = redisService.keys("*");//这里查看所有的keys
- System.out.println(keys);//只有username username1(已经清空了)
- //删除
- redisService.set("username2", "oyhk2");
- String username2 = redisService.get("username2");
- System.out.println(username2);
- redisService.del("username2");
- String username2_2 = redisService.get("username2");
- System.out.println(username2_2);//如果为null,那么就是删除数据了
- //dbsize
- long dbSizeEnd = redisService.dbSize();
- System.out.println(dbSizeEnd);
- //清空reids所有数据
- //redisService.flushDB();
- }
- }
spring 结合 redis 例子 (转)的更多相关文章
- Spring Boot 2 + Redis例子
Redis是一个key-value数据库,支持存储的value类型包括string(字符串).list(链表).set(集合).zset(sorted set --有序集合)和hash(哈希类型).在 ...
- spring和redis的整合-超越昨天的自己系列(7)
超越昨天的自己系列(7) 扯淡: 最近一直在慢慢多学习各个组件,自己搭建出一些想法.是一个涉猎的过程,慢慢意识到知识是可以融汇贯通,举一反三的,不过前提好像是研究的比较深,有了自己的见解.自认为学习 ...
- spring和redis的整合
spring和redis的整合-超越昨天的自己系列(7) 超越昨天的自己系列(7) 扯淡: 最近一直在慢慢多学习各个组件,自己搭建出一些想法.是一个涉猎的过程,慢慢意识到知识是可以融汇贯通,举一反三 ...
- Spring Data Redis实现消息队列——发布/订阅模式
一般来说,消息队列有两种场景,一种是发布者订阅者模式,一种是生产者消费者模式.利用redis这两种场景的消息队列都能够实现. 定义:生产者消费者模式:生产者生产消息放到队列里,多个消费者同时监听队列, ...
- Spring Data JPA例子[基于Spring Boot、Mysql]
关于Spring Data Spring社区的一个顶级工程,主要用于简化数据(关系型&非关系型)访问,如果我们使用Spring Data来开发程序的话,那么可以省去很多低级别的数据访问操作,如 ...
- spring配置redis注解缓存
前几天在spring整合Redis的时候使用了手动的方式,也就是可以手动的向redis添加缓存与清除缓存,参考:http://www.cnblogs.com/qlqwjy/p/8562703.html ...
- Spring Data Redis学习
本文是从为知笔记上复制过来的,懒得调整格式了,为知笔记版本是带格式的,内容也比这里全.点这里 为知笔记版本 Spring Data Redis 学习 Version 1.8.4.Release 前言 ...
- Spring Boot使用Spring Data Redis操作Redis(单机/集群)
说明:Spring Boot简化了Spring Data Redis的引入,只要引入spring-boot-starter-data-redis之后会自动下载相应的Spring Data Redis和 ...
- Spring Data Redis入门示例:基于Jedis及底层API (二)
使用底层API:RedisConnectionFactory和RedisConnection可以直接操作Redis,下面是一个简单的例子: ### Maven依赖 <properties> ...
随机推荐
- 十一、结构模式之享元(Flyweight)模式
什么是享元模式 享元模式是对象的结构模式,是运用共享技术来有效的支持大量细粒度的对象.享元对象能做到共享的关键是区分内蕴状态和外蕴状态.一个内蕴状态是存储在享元对象内部,并且是不会随环境改变而有所不同 ...
- python常用技巧 — 杂
目录: 1. 找到字符串中的所有数字(python find digits in string) 2. python 生成连续的浮点数(如 0.1, 0.2, 0.3, 0.4, ... , 0.9) ...
- java容器中 哪些是线程安全的
容器中线程安全的如:vectory,hashtable,非线程安全的如:hashmap,arrylist等. 对于原定义非线程的容器如:hashmap,arraylist可以使用Collec ...
- 【leetcode】907. Sum of Subarray Minimums
题目如下: 解题思路:我的想法对于数组中任意一个元素,找出其左右两边最近的小于自己的元素.例如[1,3,2,4,5,1],元素2左边比自己小的元素是1,那么大于自己的区间就是[3],右边的区间就是[4 ...
- 如何在程序中执行动态生成的Delphi代码
如何在程序中执行动态生成的Delphi代码 经常发现有人提这类问题,或者提问内容最后归结成这种问题 前些阵子有位高手写了一个“执行动态生成的代码”,这是真正的高手,我没那种功力,我只会投机取巧. 这里 ...
- BZOJ 1778: [Usaco2010 Hol]Dotp 驱逐猪猡(高斯消元+期望dp)
传送门 解题思路 设\(f(x)\)表示到\(x\)这个点的期望次数,那么转移方程为\(f(x)=\sum\frac{f(u)*(1 - \frac{p}{q})}{deg(u)}\),其中\(u\) ...
- hdu 5279 YJC plays Minecraft——生成函数
题目:http://acm.hdu.edu.cn/showproblem.php?pid=5279 令 n 个点的树的 EGF 是 g(x) ,则 \( g(x) = \sum\limits_{i=0 ...
- %d format: a number is required, not str。
python代码: attr_sql = "INSERT INTO `ym_attribute` (`attr_name`, `type_id`, `attr_value`, `attr_s ...
- 【SQL】链接服务器
最近做项目,需要对两个数据库进行同步操作,所以采用在Server SQL中建立链接服务器方式实现. 链接服务器,可以直接访问/操作其他服务器上的数据库表. 1.连接SQL Server链接服务器 EX ...
- python模块学习之HTMLTestRunner模块生成HTML测试报告
#!/usr/bin/env python #-*- coding:utf-8 -*- from HTMLTestRunner import HTMLTestRunner import time im ...