redis3.0 java spring_spring整合redis以及使用RedisTemplate的方法

需要的jar包

spring-data-Redis-1.6.2.RELEASE.jar

jedis-2.7.2.jar(依赖 commons-pool2-2.3.jar)

commons-pool2-2.3.jar

spring-redis.xml 配置文件

xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"

xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"

xmlns:aop="http://www.springframework.org/schema/aop"

xsi:schemaLocation="http://www.springframework.org/schema/beans

http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

http://www.springframework.org/schema/context

http://www.springframework.org/schema/context/spring-context-3.0.xsd

http://www.springframework.org/schema/mvc

http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd

http://www.springframework.org/schema/tx

http://www.springframework.org/schema/tx/spring-tx-3.0.xsd

http://www.springframework.org/schema/aop

http://www.springframework.org/schema/aop/spring-aop-3.0.xsd

http://www.springframework.org/schema/util

http://www.springframework.org/schema/util/spring-util-3.0.xsd">

测试代码

import java.util.HashMap;

import java.util.Map;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import org.springframework.data.redis.core.HashOperations;

import org.springframework.data.redis.core.ListOperations;

import org.springframework.data.redis.core.RedisTemplate;

import org.springframework.data.redis.core.ValueOperations;

public static void main(String[] args) {

ClassPathXmlApplicationContext appCtx = new ClassPathXmlApplicationContext("spring-redis.xml");

final RedisTemplate redisTemplate = appCtx.getBean("redisTemplate",RedisTemplate.class);

//添加一个 key

ValueOperations value = redisTemplate.opsForValue();

value.set("lp", "hello word");

//获取 这个 key 的值

System.out.println(value.get("lp"));

//添加 一个 hash集合

HashOperations hash = redisTemplate.opsForHash();

Map map = new HashMap();

map.put("name", "lp");

map.put("age", "26");

hash.putAll("lpMap", map);

//获取 map

System.out.println(hash.entries("lpMap"));

//添加 一个 list 列表

ListOperations list = redisTemplate.opsForList();

list.rightPush("lpList", "lp");

list.rightPush("lpList", "26");

//输出 list

System.out.println(list.range("lpList", 0, 1));

//添加 一个 set 集合

SetOperations set = redisTemplate.opsForSet();

set.add("lpSet", "lp");

set.add("lpSet", "26");

set.add("lpSet", "178cm");

//输出 set 集合

System.out.println(set.members("lpSet"));

//添加有序的 set 集合

ZSetOperations zset = redisTemplate.opsForZSet();

zset.add("lpZset", "lp", 0);

zset.add("lpZset", "26", 1);

zset.add("lpZset", "178cm", 2);

//输出有序 set 集合

System.out.println(zset.rangeByScore("lpZset", 0, 2));

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值