参考链接:

redisTemplate 操作

Maven中Spring-Data-Redis存储对象(redisTemplate)

1、配置RedisTempate类

配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xmlns:tx="http://www.springframework.org/schema/tx"
  7. xmlns:aop="http://www.springframework.org/schema/aop"
  8. xsi:schemaLocation="
  9. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  10. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  11.  
  12. <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
  13. <property name="maxTotal" value="${redis.maxTotal}"></property>
  14. <property name="maxIdle" value="${redis.maxIdle}" />
  15. <property name="maxWaitMillis" value="${redis.maxWait}" />
  16. <property name="testOnBorrow" value="${redis.testOnBorrow}" />
  17. </bean>
  18.  
  19. <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
  20. p:host-name="${redis.host}" p:port="${redis.port}" p:pool-config-ref="poolConfig"/>
  21.  
  22. <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
  23. <property name="connectionFactory" ref="connectionFactory" />
  24. </bean>
  25.  
  26. </beans>

属性文件

  1. # Redis settings
  2. redis.host=192.168.11.100
  3. redis.port=6379
  4. #redis.pass=hugsh
  5.  
  6. redis.maxIdle=25
  7. redis.maxTotal=250
  8. #redis.maxActive=600 invalid in2.4
  9. redis.maxWait=1000
  10. redis.testOnBorrow=true

2、操作示例

1)创建User类

必须实现或者间接实现Serializable接口:

Redis存储对象是使用序列化,spring-data-redis已经将序列化的功能内置,不需要我们去管,我们只需要调用api就可以使用。SerialVersionUID字段对序列化扩展有用,为了以后扩展或者缩减字段时不会造成反序列化出错。

  1. public class User implements Serializable {
  2.  
  3. private static final long serialVersionUID = -7898194272883238670L;
  4.  
  5. public static final String OBJECT_KEY = "USER";
  6.  
  7. public User() {
  8. }
  9.  
  10. public User(String id) {
  11. }
  12.  
  13. public User(String id, String name) {
  14. this.id = id;
  15. this.name = name;
  16. }
  17.  
  18. private String id;
  19.  
  20. private String name;
  21.  
  22. public String getId() {
  23. return id;
  24. }
  25.  
  26. public void setId(String id) {
  27. this.id = id;
  28. }
  29.  
  30. public String getName() {
  31. return name;
  32. }
  33.  
  34. public void setName(String name) {
  35. this.name = name;
  36. }
  37.  
  38. public String toString() {
  39. return "User [id=" + id + ", name=" + name + "]";
  40. }
  41.  
  42. public String getKey() {
  43. return getId();
  44. }
  45.  
  46. public String getObjectKey() {
  47. return OBJECT_KEY;
  48. }
  49. }

2)创建userService类来操作redis增删查改缓存对象。

  1. public class UserService {
  2.  
  3. RedisTemplate<String, User> redisTemplate;
  4.  
  5. public RedisTemplate<String, User> getRedisTemplate() {
  6. return redisTemplate;
  7. }
  8.  
  9. public void setRedisTemplate(RedisTemplate<String, User> redisTemplate) {
  10. this.redisTemplate = redisTemplate;
  11. }
  12.  
  13. public void put(User user) {
  14. redisTemplate.opsForHash().put(user.getObjectKey(), user.getKey(), user);
  15. }
  16.  
  17. public void delete(User key) {
  18. redisTemplate.opsForHash().delete(key.getObjectKey(), key.getKey());
  19. }
  20.  
  21. public User get(User key) {
  22. return (User) redisTemplate.opsForHash().get(key.getObjectKey(), key.getKey());
  23. }
  24. }

3)配置service的bean

  1. <bean id="userService" class="Service.UserService">
  2. <property name="redisTemplate">
  3. <ref bean="redisTemplate" />
  4. </property>
  5. </bean>

4)测试

  1. public class Main {
  2. public static void main( String[] args )
  3. {
  4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath*:/conf/applicationContext.xml");
  5. UserService userService = (UserService) applicationContext.getBean("userService");
  6.  
  7. User user1 = new User("user1ID", "User 1");
  8. User user2 = new User("user2ID", "User 2");
  9.  
  10. System.out.println("==== getting objects from redis ====");
  11. System.out.println("User is not in redis yet: " + userService.get(user1));
  12. System.out.println("User is not in redis yet: " + userService.get(user2));
  13.  
  14. System.out.println("==== putting objects into redis ====");
  15. userService.put(user1);
  16. userService.put(user2);
  17.  
  18. System.out.println("==== getting objects from redis ====");
  19. System.out.println("User should be in redis yet: " + userService.get(user1));
  20. System.out.println("User should be in redis yet: " + userService.get(user2));
  21.  
  22. System.out.println("==== deleting objects from redis ====");
  23. userService.delete(user1);
  24. userService.delete(user2);
  25.  
  26. System.out.println("==== getting objects from redis ====");
  27. System.out.println("User is not in redis yet: " + userService.get(user1));
  28. System.out.println("User is not in redis yet: " + userService.get(user2));
  29.  
  30. }
  31. }

5)结果

[redis] 普通 RedisPool 的 CRUD 实现的更多相关文章

  1. 4、redis之使用commons-pool

    增加池的配置文件redis-pool.properties: #最大能够保持idel状态的对象数 redis.pool.maxIdle=200 #当池内没有返回对象时,最大等待时间 redis.poo ...

  2. 缓存工厂之Redis缓存

    这几天没有按照计划分享技术博文,主要是去医院了,这里一想到在医院经历的种种,我真的有话要说:医院里的医务人员曾经被吹捧为美丽+和蔼+可亲的天使,在经受5天左右相互接触后不得不让感慨:遇见的有些人员在挂 ...

  3. 剑指架构师系列-Redis安装与使用

    1.安装Redis 我们在VMware中安装CentOS 64位系统后,在用户目录下下载安装Redis. 下载redis目前最稳定版本也是功能最完善,集群支持最好并加入了sentinel(哨兵-高可用 ...

  4. Python 使用 Redis 操作

    1.redis简介 redis是一款开源免费的高性能key-value数据库,redis特点: 支持更多的数据类型:字符串(String).列表(List).哈希(Map).数字(Int).集合(Se ...

  5. Redis学习(一) —— 基本使用与原理

    一.数据结构 string Redis字符串是可修改字符串,在内存中以字节数组形式存在. 下面是string在源码中的定义,SDS(Simple Dynamic String) struct SDS& ...

  6. 笔记68 Redis数据库

    一.Redis简介 REmote DIctionary Server(Redis) 是一个由Salvatore Sanfilippo写的key-value存储系统.Redis是一个开源的使用ANSI ...

  7. python 结合redis 队列 做一个例子

    结合redis 队列 做了一个例子 #!/usr/bin/env python # coding: utf-8 # @Time : 2018/12/21 0021 13:57 # @Site : # ...

  8. 聚光灯下的熊猫TV技术架构演进

    2015年开始的百播大战,熊猫TV是其中比较特别的一员. 说熊猫TV是含着金钥匙出生的公子哥不为过.还未上线,就频频曝光,科技号,微博稿,站上风口浪尖.内测期间更是有不少淘宝店高价倒卖邀请码,光内测时 ...

  9. Laravel学习笔记之Session源码解析(中)

    说明:在上篇中学习了session的启动过程,主要分为两步,一是session的实例化,即\Illuminate\Session\Store的实例化:二是从session存储介质redis中读取id ...

随机推荐

  1. Bootstrap_表单

    表单样式 一.基础表单 <form > <div class="form-group"> <label>邮箱:</label> &l ...

  2. mysql查询中通配符的使用

    mysql查询中通配符的使用     在mysql查询中经常会使用通配符,并且mysql的通配符和pgsql的存在区别(稍候再讨论),而且mysql中还可以使用正则表达式. SQL模式匹配: “_” ...

  3. jquery ajax请求时,设置请求头信息

    设置一个名为 headers 的参数 参考代码: // attempt to make an XMLHttpRequest to indeed.com // jQuery 1.6.1 and Chro ...

  4. Margin and Padding in Windows Forms Controls

    https://msdn.microsoft.com/en-us/library/ms229627.aspx Margin and Padding Precise placement of contr ...

  5. [Effective Java]第二章 创建和销毁对象

    声明:原创作品,转载时请注明文章来自SAP师太技术博客( 博/客/园www.cnblogs.com):www.cnblogs.com/jiangzhengjun,并以超链接形式标明文章原始出处,否则将 ...

  6. Codeforces Round #260 (Div. 2)AB

    http://codeforces.com/contest/456/problem/A A. Laptops time limit per test 1 second memory limit per ...

  7. Mybatis Generator(定制化)代码生成器

    1.使用Mapper专用的MyBatis Generator插件 通用Mapper在1.0.0版本的时候增加了MyBatis Generator(以下简称MBG)插件,使用该插件可以很方便的生成实体类 ...

  8. Python学习笔记day5

    模块 1.自定义模块 自定义模块就是在当前目录下创建__init__.py这个空文件,这样外面的程序才能识别此目录为模块包并导入 上图中libs目录下有__init__.py文件,index.py程序 ...

  9. [转]-Gradle使用手册(一):为什么要用Gradle?

    原文地址:http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Using-sourceCompatibility-1. ...

  10. eclipse 技巧

    1. eclipse中xml中提示需有xsd文档 如在线eclipse将自动网络获取.xsd 否则 手动本地添加(在xml catalog参数设置选项) 2.当明确实现功能时,可将已有方法抽取成接口, ...