最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Spring整合Redis完整實(shí)例代碼

 更新時(shí)間:2017年04月20日 14:18:29   作者:liuyazhuang  
這篇文章主要介紹了Spring整合Redis完整實(shí)例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

做過大型軟件系統(tǒng)的同學(xué)都知道,隨著系統(tǒng)數(shù)據(jù)越來越龐大,越來越復(fù)雜,隨之帶來的問題就是系統(tǒng)性能越來越差,尤其是頻繁操作數(shù)據(jù)庫帶來的性能損耗更為嚴(yán)重。很多業(yè)績大牛為此提出了眾多的解決方案和開發(fā)了很多框架以優(yōu)化這種頻繁操作數(shù)據(jù)庫所帶來的性能損耗,其中,尤為突出的兩個(gè)緩存服務(wù)器是Memcached和Redis。今天,我們不講Memcached和Redis本身,這里主要為大家介紹如何使spring與Redis整合。

1、pom構(gòu)建

<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>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> 
</project> 

2、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.lyz.dao.impl.UserDaoImpl" /> 
</beans> 

3、redis.properties

# Redis settings 
redis.host=192.168.157.130 
redis.port=6379 
redis.pass=liuyazhuang 
 
 
redis.maxIdle=300 
redis.maxActive=600 
redis.maxWait=1000 
redis.testOnBorrow=true 

4、User實(shí)體類

package com.lyz.entity; 
import java.io.Serializable; 
 
/** 
 * user實(shí)體類 
 * @author liuyazhuang 
 * 
 */ 
public class User implements Serializable { 
  
 private static final long serialVersionUID = -6011241820070393952L; 
 
 private String id; 
  
 private String name; 
  
 private String password; 


 public User() { 
   
 } 
  

 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; 
 } 
 
 /** 
  * 設(shè)置id 
  * @param id the id to set 
  */ 
 public void setId(String id) { 
  this.id = id; 
 } 
 
 /** 
  * 獲得name 
  * @return the name 
  */ 
 public String getName() { 
  return name; 
 } 
 
 /** 
  * 設(shè)置name 
  * @param name the name to set 
  */ 
 public void setName(String name) { 
  this.name = name; 
 } 
 
 /** 
  * 獲得password 
  * @return the password 
  */ 
 public String getPassword() { 
  return password; 
 } 
 
 /** 
  * 設(shè)置password 
  * @param password the password to set 
  */ 
 public void setPassword(String password) { 
  this.password = password; 
 } 
} 

5、User操作的接口IUserDao

package com.lyz.dao; 
import java.util.List; 
import com.lyz.entity.User;  
/** 
 * user操作接口 
 * @author liuyazhuang 
 * 
 */ 
public interface IUserDao { 
  
 /** 
  * 新增 
  * @param user 
  * @return 
  */ 
 boolean add(User user); 
  
 /** 
  * 批量新增 使用pipeline方式 
  * @param list 
  * @return 
  */ 
 boolean add(List<User> list); 
  
 /** 
  * 刪除 
  * @param key 
  */ 
 void delete(String key); 
  
 /** 
  * 刪除多個(gè) 
  * @param keys 
  */ 
 void delete(List<String> keys); 
  
 /** 
  * 修改 
  * @param user 
  * @return 
  */ 
 boolean update(User user); 
 
 /** 
  * 通過key獲取 
  * @param keyId 
  * @return 
  */ 
 User get(String keyId); 
}

6、基本的抽象類

package com.lyz.dao.impl; 
import org.springframework.beans.factory.annotation.Autowired; 
import org.springframework.data.redis.core.RedisTemplate; 
import org.springframework.data.redis.serializer.RedisSerializer; 
 
 
/** 
 * 基本的抽象類 
 * @author liuyazhuang 
 * 
 * @param <K> 
 * @param <V> 
 */ 
public abstract class AbstractBaseRedisDao<K, V> { 
  
 @Autowired 
 protected RedisTemplate<K, V> redisTemplate; 
 
 /** 
  * 設(shè)置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(); 
 } 
} 

7、IUserDao的實(shí)現(xiàn)類UserDaoImpl

package com.lyz.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.lyz.dao.IUserDao; 
import com.lyz.entity.User;  
/** 
 * 接口的實(shí)現(xiàn)類 
 * @author liuyazhuang 
 * 
 */ 
public class UserDaoImpl extends AbstractBaseRedisDao<String, User> implements IUserDao { 
 
 /** 
  * 新增 
  * @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方式 
  *@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; 
 } 
  
 /** 
  * 刪除 
  * @param key 
  */ 
 public void delete(String key) { 
  List<String> list = new ArrayList<String>(); 
  list.add(key); 
  delete(list); 
 } 
 
 /** 
  * 刪除多個(gè) 
  * @param keys 
  */ 
 public void delete(List<String> keys) { 
  redisTemplate.delete(keys); 
 } 
 
 /** 
  * 修改 
  * @param user 
  * @return 
  */ 
 public boolean update(final User user) { 
  String key = user.getId(); 
  if (get(key) == null) { 
   throw new NullPointerException("數(shù)據(jù)行不存在, 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獲取 
  * @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; 
 } 
} 

8、測試類RedisTest

package com.lyz.test; 
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.lyz.dao.IUserDao; 
import com.lyz.entity.User; 
/** 
 * Redis測試類 
 * @author liuyazhuang 
 * 
 */ 
@ContextConfiguration(locations = {"classpath*:applicationContext.xml"}) 
public class RedisTest extends AbstractJUnit4SpringContextTests { 
  
 @Autowired 
 private IUserDao userDao; 
  
 /** 
  * 新增 
  */ 
 @Test 
 public void testAddUser() { 
  User user = new User(); 
  user.setId("user1"); 
  user.setName("liuyazhuang"); 
  boolean result = userDao.add(user); 
  Assert.assertTrue(result); 
 } 
  
 /** 
  * 批量新增 普通方式 
  */ 
 @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("liuyazhuang" + i); 
   list.add(user); 
  } 
  long begin = System.currentTimeMillis(); 
  for (User user : list) { 
   userDao.add(user); 
  } 
  System.out.println(System.currentTimeMillis() - begin); 
 } 
  
 /** 
  * 批量新增 pipeline方式 
  */ 
 @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("liuyazhuang" + i); 
   list.add(user); 
  } 
  long begin = System.currentTimeMillis(); 
  boolean result = userDao.add(list); 
  System.out.println(System.currentTimeMillis() - begin); 
  Assert.assertTrue(result); 
 } 
  
 /** 
  * 修改 
  */ 
 @Test 
 public void testUpdate() { 
  User user = new User(); 
  user.setId("user1"); 
  user.setName("liuyazhuang"); 
  boolean result = userDao.update(user); 
  Assert.assertTrue(result); 
 } 
  
 /** 
  * 通過key刪除單個(gè) 
  */ 
 @Test 
 public void testDelete() { 
  String key = "user1"; 
  userDao.delete(key); 
 } 
  
 /** 
  * 批量刪除 
  */ 
 @Test 
 public void testDeletes() { 
  List<String> list = new ArrayList<String>(); 
  for (int i = 0; i < 10; i++) { 
   list.add("user" + i); 
  } 
  userDao.delete(list); 
 } 
  
 /** 
  * 獲取 
  */ 
 @Test 
 public void testGetUser() { 
  String id = "user1"; 
  User user = userDao.get(id); 
  Assert.assertNotNull(user); 
  Assert.assertEquals(user.getName(), "liuyazhuang"); 
 } 
 
 /** 
  * 設(shè)置userDao 
  * @param userDao the userDao to set 
  */ 
 public void setUserDao(IUserDao userDao) { 
  this.userDao = userDao; 
 } 
} 

9、溫馨提示

項(xiàng)目下載地址:Spring-Redis_jb51.rar

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Spring Boot使用過濾器Filter過程解析

    Spring Boot使用過濾器Filter過程解析

    這篇文章主要介紹了Spring Boot使用過濾器Filter過程解析,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2020-01-01
  • 詳解使用Spring Boot的AOP處理自定義注解

    詳解使用Spring Boot的AOP處理自定義注解

    本篇文章主要介紹了詳解使用Spring Boot的AOP處理自定義注解,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2018-01-01
  • JAVA TIMER簡單用法學(xué)習(xí)

    JAVA TIMER簡單用法學(xué)習(xí)

    Timer類是用來執(zhí)行任務(wù)的類,它接受一個(gè)TimerTask做參數(shù)
    2013-07-07
  • RestTemplate發(fā)送HTTP?POST請求使用方法詳解

    RestTemplate發(fā)送HTTP?POST請求使用方法詳解

    這篇文章主要為大家介紹了RestTemplate發(fā)送HTTP?POST請求的使用方法詳解,有需要的朋友可以借鑒參考下希望能夠有所幫助,祝大家多多進(jìn)步
    2022-03-03
  • Java純代碼實(shí)現(xiàn)導(dǎo)出PDF功能

    Java純代碼實(shí)現(xiàn)導(dǎo)出PDF功能

    在項(xiàng)目開發(fā)中,產(chǎn)品的需求越來越奇葩啦,開始文件下載都是下載為excel的,做著做著需求竟然變了,要求能導(dǎo)出pdf,本文就來和大家分享一下Java實(shí)現(xiàn)導(dǎo)出PDF的常用方法吧
    2023-07-07
  • 基于JDK動(dòng)態(tài)代理原理解析

    基于JDK動(dòng)態(tài)代理原理解析

    這篇文章主要介紹了基于JDK動(dòng)態(tài)代理原理解析,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-05-05
  • Spring Security攔截器引起Java CORS跨域失敗的問題及解決

    Spring Security攔截器引起Java CORS跨域失敗的問題及解決

    這篇文章主要介紹了Spring Security攔截器引起Java CORS跨域失敗的問題及解決,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-07-07
  • SpringBoot?SpringSecurity?JWT實(shí)現(xiàn)系統(tǒng)安全策略詳解

    SpringBoot?SpringSecurity?JWT實(shí)現(xiàn)系統(tǒng)安全策略詳解

    Spring?Security是Spring的一個(gè)核心項(xiàng)目,它是一個(gè)功能強(qiáng)大且高度可定制的認(rèn)證和訪問控制框架。它提供了認(rèn)證和授權(quán)功能以及抵御常見的攻擊,它已經(jīng)成為保護(hù)基于spring的應(yīng)用程序的事實(shí)標(biāo)準(zhǔn)
    2022-11-11
  • 解決Callable的對象中,用@Autowired注入別的對象失敗問題

    解決Callable的對象中,用@Autowired注入別的對象失敗問題

    這篇文章主要介紹了解決Callable的對象中,用@Autowired注入別的對象失敗問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-07-07
  • 為什么說要慎用SpringBoot @ComponentScan

    為什么說要慎用SpringBoot @ComponentScan

    本文主要介紹了為什么說要慎用SpringBoot @ComponentScan,文中通過示例代碼介紹的非常詳細(xì),需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-07-07

最新評論

垣曲县| 金溪县| 彭阳县| 长汀县| 晋城| 卓资县| 克拉玛依市| 贡嘎县| 从江县| 兖州市| 湖州市| 斗六市| 深圳市| 九龙城区| 东莞市| 闸北区| 乐陵市| 广河县| 乌兰浩特市| 肇源县| 新民市| 怀宁县| 玉门市| 绥化市| 思南县| 黄陵县| 喀什市| 探索| 涿州市| 延吉市| 贵阳市| 安西县| 河东区| 托克逊县| 报价| 锡林郭勒盟| 云安县| 双峰县| 桐柏县| 吉安市| 金华市|