pom构建:
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.x.redis</groupId>
- <artifactId>springredis</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <dependencies>
- <dependency>
- <groupId>org.springframework.data</groupId>
- <artifactId>spring-data-redis</artifactId>
- <version>1.0.2.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>3.1.2.RELEASE</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
spring配置文件(applicationContext.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:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
- <context:property-placeholder location="classpath:redis.properties" />
- <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
- <property name="maxIdle" value="${redis.maxIdle}" />
- <property name="maxActive" value="${redis.maxActive}" />
- <property name="maxWait" value="${redis.maxWait}" />
- <property name="testOnBorrow" value="${redis.testOnBorrow}" />
- </bean>
- <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
- p:host-name="${redis.host}" p:port="${redis.port}" p:password="${redis.pass}" p:pool-config-ref="poolConfig"/>
- <bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
- <property name="connectionFactory" ref="connectionFactory" />
- </bean>
- <bean id="userDao" class="com.x.dao.impl.UserDao" />
- </beans>
redis.properties
- # Redis settings
- redis.host=localhost
- redis.port=6379
- redis.pass=java2000_wl
- redis.maxIdle=300
- redis.maxActive=600
- redis.maxWait=1000
- redis.testOnBorrow=true
java代码:
- package com.x.entity;
- import java.io.Serializable;
- /**
- * @author http://blog.csdn.net/java2000_wl
- * @version <b>1.0</b>
- */
- public class User implements Serializable {
- private static final long serialVersionUID = -6011241820070393952L;
- private String id;
- private String name;
- private String password;
- /**
- * <br>------------------------------<br>
- */
- public User() {
- }
- /**
- * <br>------------------------------<br>
- */
- public User(String id, String name, String password) {
- super();
- this.id = id;
- this.name = name;
- this.password = password;
- }
- /**
- * 获得id
- * @return the id
- */
- public String getId() {
- return id;
- }
- /**
- * 设置id
- * @param id the id to set
- */
- public void setId(String id) {
- this.id = id;
- }
- /**
- * 获得name
- * @return the name
- */
- public String getName() {
- return name;
- }
- /**
- * 设置name
- * @param name the name to set
- */
- public void setName(String name) {
- this.name = name;
- }
- /**
- * 获得password
- * @return the password
- */
- public String getPassword() {
- return password;
- }
- /**
- * 设置password
- * @param password the password to set
- */
- public void setPassword(String password) {
- this.password = password;
- }
- }
- package com.x.dao;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.data.redis.core.RedisTemplate;
- import org.springframework.data.redis.serializer.RedisSerializer;
- /**
- * AbstractBaseRedisDao
- * @author http://blog.csdn.net/java2000_wl
- * @version <b>1.0</b>
- */
- public abstract class AbstractBaseRedisDao<K, V> {
- @Autowired
- protected RedisTemplate<K, V> redisTemplate;
- /**
- * 设置redisTemplate
- * @param redisTemplate the redisTemplate to set
- */
- public void setRedisTemplate(RedisTemplate<K, V> redisTemplate) {
- this.redisTemplate = redisTemplate;
- }
- /**
- * 获取 RedisSerializer
- * <br>------------------------------<br>
- */
- protected RedisSerializer<String> getRedisSerializer() {
- return redisTemplate.getStringSerializer();
- }
- }
- package com.x.dao;
- import java.util.List;
- import com.x.entity.User;
- /**
- * @author http://blog.csdn.net/java2000_wl
- * @version <b>1.0</b>
- */
- public interface IUserDao {
- /**
- * 新增
- * <br>------------------------------<br>
- * @param user
- * @return
- */
- boolean add(User user);
- /**
- * 批量新增 使用pipeline方式
- * <br>------------------------------<br>
- * @param list
- * @return
- */
- boolean add(List<User> list);
- /**
- * 删除
- * <br>------------------------------<br>
- * @param key
- */
- void delete(String key);
- /**
- * 删除多个
- * <br>------------------------------<br>
- * @param keys
- */
- void delete(List<String> keys);
- /**
- * 修改
- * <br>------------------------------<br>
- * @param user
- * @return
- */
- boolean update(User user);
- /**
- * 通过key获取
- * <br>------------------------------<br>
- * @param keyId
- * @return
- */
- User get(String keyId);
- }
- package com.x.dao.impl;
- import java.util.ArrayList;
- import java.util.List;
- import org.springframework.dao.DataAccessException;
- import org.springframework.data.redis.connection.RedisConnection;
- import org.springframework.data.redis.core.RedisCallback;
- import org.springframework.data.redis.serializer.RedisSerializer;
- import org.springframework.util.Assert;
- import com.x.dao.AbstractBaseRedisDao;
- import com.x.dao.IUserDao;
- import com.x.entity.User;
- /**
- * Dao
- * @author http://blog.csdn.net/java2000_wl
- * @version <b>1.0</b>
- */
- public class UserDao extends AbstractBaseRedisDao<String, User> implements IUserDao {
- /**
- * 新增
- *<br>------------------------------<br>
- * @param user
- * @return
- */
- public boolean add(final User user) {
- boolean result = redisTemplate.execute(new RedisCallback<Boolean>() {
- public Boolean doInRedis(RedisConnection connection)
- throws DataAccessException {
- RedisSerializer<String> serializer = getRedisSerializer();
- byte[] key = serializer.serialize(user.getId());
- byte[] name = serializer.serialize(user.getName());
- return connection.setNX(key, name);
- }
- });
- return result;
- }
- /**
- * 批量新增 使用pipeline方式
- *<br>------------------------------<br>
- *@param list
- *@return
- */
- public boolean add(final List<User> list) {
- Assert.notEmpty(list);
- boolean result = redisTemplate.execute(new RedisCallback<Boolean>() {
- public Boolean doInRedis(RedisConnection connection)
- throws DataAccessException {
- RedisSerializer<String> serializer = getRedisSerializer();
- for (User user : list) {
- byte[] key = serializer.serialize(user.getId());
- byte[] name = serializer.serialize(user.getName());
- connection.setNX(key, name);
- }
- return true;
- }
- }, false, true);
- return result;
- }
- /**
- * 删除
- * <br>------------------------------<br>
- * @param key
- */
- public void delete(String key) {
- List<String> list = new ArrayList<String>();
- list.add(key);
- delete(list);
- }
- /**
- * 删除多个
- * <br>------------------------------<br>
- * @param keys
- */
- public void delete(List<String> keys) {
- redisTemplate.delete(keys);
- }
- /**
- * 修改
- * <br>------------------------------<br>
- * @param user
- * @return
- */
- public boolean update(final User user) {
- String key = user.getId();
- if (get(key) == null) {
- throw new NullPointerException("数据行不存在, key = " + key);
- }
- boolean result = redisTemplate.execute(new RedisCallback<Boolean>() {
- public Boolean doInRedis(RedisConnection connection)
- throws DataAccessException {
- RedisSerializer<String> serializer = getRedisSerializer();
- byte[] key = serializer.serialize(user.getId());
- byte[] name = serializer.serialize(user.getName());
- connection.set(key, name);
- return true;
- }
- });
- return result;
- }
- /**
- * 通过key获取
- * <br>------------------------------<br>
- * @param keyId
- * @return
- */
- public User get(final String keyId) {
- User result = redisTemplate.execute(new RedisCallback<User>() {
- public User doInRedis(RedisConnection connection)
- throws DataAccessException {
- RedisSerializer<String> serializer = getRedisSerializer();
- byte[] key = serializer.serialize(keyId);
- byte[] value = connection.get(key);
- if (value == null) {
- return null;
- }
- String name = serializer.deserialize(value);
- return new User(keyId, name, null);
- }
- });
- return result;
- }
- }
- import java.util.ArrayList;
- import java.util.List;
- import junit.framework.Assert;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.test.context.ContextConfiguration;
- import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
- import com.x.dao.IUserDao;
- import com.x.entity.User;
- /**
- * 测试
- * @author http://blog.csdn.net/java2000_wl
- * @version <b>1.0</b>
- */
- @ContextConfiguration(locations = {"classpath*:applicationContext.xml"})
- public class RedisTest extends AbstractJUnit4SpringContextTests {
- @Autowired
- private IUserDao userDao;
- /**
- * 新增
- * <br>------------------------------<br>
- */
- @Test
- public void testAddUser() {
- User user = new User();
- user.setId("user1");
- user.setName("java2000_wl");
- boolean result = userDao.add(user);
- Assert.assertTrue(result);
- }
- /**
- * 批量新增 普通方式
- * <br>------------------------------<br>
- */
- @Test
- public void testAddUsers1() {
- List<User> list = new ArrayList<User>();
- for (int i = 10; i < 50000; i++) {
- User user = new User();
- user.setId("user" + i);
- user.setName("java2000_wl" + i);
- list.add(user);
- }
- long begin = System.currentTimeMillis();
- for (User user : list) {
- userDao.add(user);
- }
- System.out.println(System.currentTimeMillis() - begin);
- }
- /**
- * 批量新增 pipeline方式
- * <br>------------------------------<br>
- */
- @Test
- public void testAddUsers2() {
- List<User> list = new ArrayList<User>();
- for (int i = 10; i < 1500000; i++) {
- User user = new User();
- user.setId("user" + i);
- user.setName("java2000_wl" + i);
- list.add(user);
- }
- long begin = System.currentTimeMillis();
- boolean result = userDao.add(list);
- System.out.println(System.currentTimeMillis() - begin);
- Assert.assertTrue(result);
- }
- /**
- * 修改
- * <br>------------------------------<br>
- */
- @Test
- public void testUpdate() {
- User user = new User();
- user.setId("user1");
- user.setName("new_password");
- boolean result = userDao.update(user);
- Assert.assertTrue(result);
- }
- /**
- * 通过key删除单个
- * <br>------------------------------<br>
- */
- @Test
- public void testDelete() {
- String key = "user1";
- userDao.delete(key);
- }
- /**
- * 批量删除
- * <br>------------------------------<br>
- */
- @Test
- public void testDeletes() {
- List<String> list = new ArrayList<String>();
- for (int i = 0; i < 10; i++) {
- list.add("user" + i);
- }
- userDao.delete(list);
- }
- /**
- * 获取
- * <br>------------------------------<br>
- */
- @Test
- public void testGetUser() {
- String id = "user1";
- User user = userDao.get(id);
- Assert.assertNotNull(user);
- Assert.assertEquals(user.getName(), "java2000_wl");
- }
- /**
- * 设置userDao
- * @param userDao the userDao to set
- */
- public void setUserDao(IUserDao userDao) {
- this.userDao = userDao;
- }
- }
相关推荐
在本"RedisDemo增删改查例子"中,我们将深入理解如何利用Redis进行基本的数据操作,包括添加(Add)、删除(Delete)、修改(Modify)和查询(Check)。 1. 添加(Add) Redis提供了多种数据结构来存储数据,如...
在本项目中,我们将深入探讨如何利用这三大框架来实现数据的增删改查(CRUD)以及分页功能。 首先,Spring框架作为基础,它提供了依赖注入(DI)和面向切面编程(AOP)的核心特性,使得各个组件之间可以松耦合,...
本示例将重点讲解如何使用Java与Redis进行基本的增删改查操作。 1. **连接Redis** 在Java中,我们需要先导入相应的库,如Jedis,然后创建一个Jedis实例来连接到Redis服务器。通常,我们需要提供Redis服务器的IP...
这个"ssm+redis的增删改查的demo.zip"文件很可能是为了演示如何在实际项目中整合这四个技术,进行数据的CRUD(创建、读取、更新、删除)操作。以下将详细介绍SSM和Redis的相关知识点。 **1. Spring框架** Spring是...
**SSM + Redis 增删改查小Demo详解** 在现代Java Web开发中,SSM(Spring、Spring MVC、MyBatis)框架组合与Redis缓存系统的集成应用非常广泛。本项目“maven+ssm+redis增删改查小demo”提供了一个基本的示例,展示...
在这个“redis增删改查小demo(maven)”项目中,开发者提供了一个使用 Maven 构建的 Redis 操作示例,旨在帮助初学者理解如何在Java应用中进行Redis的基本操作。 首先,Maven 是一个项目管理和依赖管理工具,它通过`...
本文将深入探讨如何将这些技术整合起来实现数据的增删改查功能。 首先,我们需要在项目中集成Spring、Spring MVC、Hibernate和Redis。这通常涉及以下几个步骤: 1. 引入依赖:在`pom.xml`文件中添加所需的库,包括...
本主题主要围绕“redis增删改查操作”,特别是如何利用Redis的list和hash数据结构来实现数据的有序存储和管理。 首先,`RedisDealUtil.java`和`RedisConnUtil.java`是两个关键的Java类,它们通常包含了连接Redis...
Redis数据库的增删改查,是基于内存的数据库,存储的是key-value对的形式,操作速度快
综上所述,"spring整合redis项目"主要涵盖了Spring与Redis的集成,包括配置、API使用、测试以及缓存管理等多个方面。通过这样的整合,开发者可以充分利用Redis的性能优势,提高应用的响应速度和并发能力。
在Spring MVC的控制器中,可以注入`RedisTemplate`并调用其方法来执行增删改查操作。为了支持事务,可以使用`RedisTemplate`的`executePipelined`方法,它可以批量执行命令并确保原子性。 ```java @Autowired ...
本文将深入探讨如何将Spring与Redis进行整合,为新手提供一个简单易懂的实践指南。 一、Spring与Redis整合的背景及优势 Spring框架提供了丰富的集成支持,使得与其他技术的整合变得非常方便。整合Spring和Redis...
本教程将帮助初学者理解Redis的基础操作,包括增、删、改、查(CRUD)。 一、Redis安装与启动 在开始使用Redis之前,首先需要在本地或服务器上安装Redis。这通常涉及下载源码、编译和配置环境。在Linux环境下,可以...
springboot 集成redis 简单项目
Spring整合Redis完整实例代码,下载经简单的修改配置文件,即可运行,代码中有详细的注释,关于代码的详情可参见博文:http://blog.csdn.net/l1028386804/article/details/52108758
本篇文章将详细探讨如何使用.NET技术,尤其是C#语言,来操作Redis进行存储、增删改查等操作。 首先,我们需要在项目中引入StackExchange.Redis NuGet包,它提供了丰富的API来与Redis进行通信。安装完成后,我们可以...
4. **操作Redis**:从连接池中获取`Jedis`实例,执行增删改查操作,如`set`、`get`、`lpush`、`rpop`等。使用完毕后,必须将`Jedis`实例返回给连接池,避免资源泄漏。 5. **关闭连接池**:当应用结束时,记得关闭...
在springMVC中java操作redis的封装的增删改查demo --------------