一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - spring整合redis緩存并以注解(@Cacheable、@CachePut、@CacheEvict)形式使用

spring整合redis緩存并以注解(@Cacheable、@CachePut、@CacheEvict)形式使用

2020-09-15 14:10彩虹過后的羽翼 Java教程

本篇文章主要介紹了spring整合redis緩存并以注解(@Cacheable、@CachePut、@CacheEvict)形式使用,具有一定的參考價值,有興趣的可以了解一下。

maven項目中在pom.xml中依賴2個jar包,其他的spring的jar包省略:

?
1
2
3
4
5
6
7
8
9
10
<dependency>
  <groupId>redis.clients</groupId>
  <artifactId>jedis</artifactId>
  <version>2.8.1</version>
</dependency>
<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-redis</artifactId>
  <version>1.7.2.RELEASE</version>
</dependency>

spring-Redis.xml中的內容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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:mvc="http://www.springframework.org/schema/mvc"
  xmlns:cache="http://www.springframework.org/schema/cache"
  xsi:schemaLocation="http://www.springframework.org/schema/beans  
            http://www.springframework.org/schema/beans/spring-beans-4.2.xsd  
            http://www.springframework.org/schema/context  
            http://www.springframework.org/schema/context/spring-context-4.2.xsd  
            http://www.springframework.org/schema/mvc  
            http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
            http://www.springframework.org/schema/cache 
            http://www.springframework.org/schema/cache/spring-cache-4.2.xsd"> 
   
  <context:property-placeholder location="classpath:redis-config.properties" /> 
 
  <!-- 啟用緩存注解功能,這個是必須的,否則注解不會生效,另外,該注解一定要聲明在spring主配置文件中才會生效 -->
  <cache:annotation-driven cache-manager="cacheManager" /> 
   
   <!-- redis 相關配置 -->
   <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig"
     <property name="maxIdle" value="${redis.maxIdle}" />  
     <property name="maxWaitMillis" value="${redis.maxWait}" /> 
     <property name="testOnBorrow" value="${redis.testOnBorrow}" /> 
   </bean
 
   <bean id="JedisConnectionFactory" 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.RedisTemplate"
     <property name="connectionFactory" ref="JedisConnectionFactory" /> 
   </bean
   
   <!-- spring自己的緩存管理器,這里定義了緩存位置名稱 ,即注解中的value -->
   <bean id="cacheManager" class="org.springframework.cache.support.SimpleCacheManager"
     <property name="caches"
      <set
        <!-- 這里可以配置多個redis -->
        <!-- <bean class="com.cn.util.RedisCache"> 
           <property name="redisTemplate" ref="redisTemplate" /> 
           <property name="name" value="default"/> 
        </bean> -->
        <bean class="com.cn.util.RedisCache"
           <property name="redisTemplate" ref="redisTemplate" /> 
           <property name="name" value="common"/> 
           <!-- common名稱要在類或方法的注解中使用 -->
        </bean>
      </set
     </property
   </bean
   
</beans

redis-config.properties中的內容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Redis settings
# server IP
redis.host=127.0.0.1
# server port
redis.port=6379
# server pass
redis.pass=
# use dbIndex
redis.database=0
# 控制一個pool最多有多少個狀態為idle(空閑的)的jedis實例
redis.maxIdle=300
# 表示當borrow(引入)一個jedis實例時,最大的等待時間,如果超過等待時間(毫秒),則直接拋出JedisConnectionException; 
redis.maxWait=3000
# 在borrow一個jedis實例時,是否提前進行validate操作;如果為true,則得到的jedis實例均是可用的 
redis.testOnBorrow=true

com.cn.util.RedisCache類中的內容:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
package com.cn.util; 
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
 
import org.springframework.cache.Cache;
import org.springframework.cache.support.SimpleValueWrapper;
import org.springframework.dao.DataAccessException;
import org.springframework.data.redis.connection.RedisConnection;
import org.springframework.data.redis.core.RedisCallback;
import org.springframework.data.redis.core.RedisTemplate;
 
public class RedisCache implements Cache{
 
  private RedisTemplate<String, Object> redisTemplate; 
  private String name; 
  public RedisTemplate<String, Object> getRedisTemplate() {
    return redisTemplate; 
  }
    
  public void setRedisTemplate(RedisTemplate<String, Object> redisTemplate) {
    this.redisTemplate = redisTemplate; 
  }
    
  public void setName(String name) {
    this.name = name; 
  }
    
  @Override
  public String getName() {
    // TODO Auto-generated method stub 
    return this.name; 
  }
 
  @Override
  public Object getNativeCache() {
   // TODO Auto-generated method stub 
    return this.redisTemplate; 
  }
  
  @Override
  public ValueWrapper get(Object key) {
   // TODO Auto-generated method stub
   System.out.println("get key");
   final String keyf = key.toString();
   Object object = null;
   object = redisTemplate.execute(new RedisCallback<Object>() {
   public Object doInRedis(RedisConnection connection) 
         throws DataAccessException {
     byte[] key = keyf.getBytes();
     byte[] value = connection.get(key);
     if (value == null) {
       return null;
      }
     return toObject(value);
     }
    });
    return (object != null ? new SimpleValueWrapper(object) : null);
   }
  
   @Override
   public void put(Object key, Object value) {
    // TODO Auto-generated method stub
    System.out.println("put key");
    final String keyf = key.toString(); 
    final Object valuef = value; 
    final long liveTime = 86400
    redisTemplate.execute(new RedisCallback<Long>() { 
      public Long doInRedis(RedisConnection connection) 
          throws DataAccessException { 
        byte[] keyb = keyf.getBytes(); 
        byte[] valueb = toByteArray(valuef); 
        connection.set(keyb, valueb); 
        if (liveTime > 0) { 
          connection.expire(keyb, liveTime); 
         
        return 1L; 
       
     }); 
   }
 
   private byte[] toByteArray(Object obj) { 
     byte[] bytes = null
     ByteArrayOutputStream bos = new ByteArrayOutputStream(); 
     try
      ObjectOutputStream oos = new ObjectOutputStream(bos); 
      oos.writeObject(obj); 
      oos.flush(); 
      bytes = bos.toByteArray(); 
      oos.close(); 
      bos.close(); 
     }catch (IOException ex) { 
        ex.printStackTrace(); 
     
     return bytes; 
    
 
    private Object toObject(byte[] bytes) {
     Object obj = null
      try {
        ByteArrayInputStream bis = new ByteArrayInputStream(bytes); 
        ObjectInputStream ois = new ObjectInputStream(bis); 
        obj = ois.readObject(); 
        ois.close(); 
        bis.close(); 
      } catch (IOException ex) { 
        ex.printStackTrace(); 
      } catch (ClassNotFoundException ex) { 
        ex.printStackTrace(); 
      
      return obj; 
    }
  
    @Override
    public void evict(Object key) { 
     // TODO Auto-generated method stub 
     System.out.println("del key");
     final String keyf = key.toString(); 
     redisTemplate.execute(new RedisCallback<Long>() { 
     public Long doInRedis(RedisConnection connection) 
          throws DataAccessException { 
       return connection.del(keyf.getBytes()); 
      
     }); 
    }
  
    @Override
    public void clear() { 
      // TODO Auto-generated method stub 
      System.out.println("clear key");
      redisTemplate.execute(new RedisCallback<String>() { 
        public String doInRedis(RedisConnection connection) 
            throws DataAccessException { 
         connection.flushDb(); 
          return "ok"
        
      }); 
    }
 
    @Override
    public <T> T get(Object key, Class<T> type) {
      // TODO Auto-generated method stub
      return null;
    }
   
    @Override
    public ValueWrapper putIfAbsent(Object key, Object value) {
      // TODO Auto-generated method stub
      return null;
    }
 
}

到了這一步,大部分人會想在web.xml的啟動配置文件地方(context-param)加入了spring-redis.xml,讓項目啟動時加載這個配置文件吧,但是這樣啟動后注解不生效。

正確的做法是:web.xml中配置了servlet控制器:

?
1
2
3
4
5
6
7
8
9
10
<servlet>
 <servlet-name>SpringMVC</servlet-name>
 <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
 <init-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/WEB-INF/spring-mvc.xml</param-value>
 </init-param>
 <load-on-startup>1</load-on-startup>
 <async-supported>true</async-supported>
</servlet>

在DispatcherServlet的初始化過程中,框架會在web應用的 WEB-INF文件夾下尋找名為spring-mvc.xml的配置文件,如果不指定的話,默認是applicationContext.xml

只需要在spring-mvc.xml文件中引入spring-redis配置文件即可,正如spring-redis.xml中的啟用注解說的:<cache:annotation-driven cache-manager="cacheManager" />注解一定要聲明在spring主配置文件中才會生效。

spring-mvc.xml內容,省略了spring與spring MVC整合的那部分:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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:mvc="http://www.springframework.org/schema/mvc"
  xsi:schemaLocation="http://www.springframework.org/schema/beans  
            http://www.springframework.org/schema/beans/spring-beans-4.2.xsd  
            http://www.springframework.org/schema/context  
            http://www.springframework.org/schema/context/spring-context-4.2.xsd  
            http://www.springframework.org/schema/mvc  
            http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
  <!-- 自動掃描該包,使SpringMVC認為包下用了@controller注解的類是控制器 -->
  <context:component-scan base-package="com.cn" /> 
   
  <!-- 引入同文件夾下的redis屬性配置文件 -->
  <import resource="spring-redis.xml"/>
   
</beans

在service的實現類中:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@Service
public class UserServiceImpl implements UserService{
 
  @Autowired
  private UserBo userBo;
 
  @Cacheable(value="common",key="'id_'+#id")
  public User selectByPrimaryKey(Integer id) {
    return userBo.selectByPrimaryKey(id);
  }
   
  @CachePut(value="common",key="#user.getUserName()")
  public void insertSelective(User user) {
    userBo.insertSelective(user);
  }
 
  @CacheEvict(value="common",key="'id_'+#id")
  public void deleteByPrimaryKey(Integer id) {
    userBo.deleteByPrimaryKey(id);
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:http://blog.csdn.net/aqsunkai/article/details/51758900

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 手机看片黄色 | 惩罚美女妲己的尤老师 | 波多野结衣之高校教师 | 欧美一级片观看 | 亚洲欧美日韩综合在线 | 日本啊v在线观看 | 国产成人综合久久精品红 | 精品视频手机在线观看免费 | 色在线亚洲视频www 色欲麻豆国产福利精品 | 91欧美国产 | 午夜精品久久久久久久2023 | 亚洲冬月枫中文字幕在线看 | 欧美国产日韩在线播放 | tube4欧美4 | 99视频全部看免费观 | 特黄a大片免费视频 | 国产成人愉拍精品 | 欧美一级艳片视频免费观看 | 欧美在线视频一区在线观看 | 男人的天堂视频 | 国产在线成人a | 麻豆网站在线免费观看 | 91久久99热青草国产 | 美女福利视频午夜在线 | 99国产精品久久久久久久... | 脱jk裙的美女露小内内无遮挡 | 色帝国亚洲欧美在线蜜汁tv | 日韩 国产 欧美 精品 在线 | 欧美日韩久久中文字幕 | 日韩高清一区二区三区不卡 | chinese男gay飞机同志 | 无限资源在线观看完整版免费下载 | 水多多www视频在线观看高清 | 免费观看伦理片 | 奇米影视999| jazz中国女人护士 | 日韩欧美一区二区不卡 | 国产男人搡女人免费视频 | 俄罗斯女同和女同xx | 色综七七久久成人影 | 欧美同性videos|