• SSM之Spring注解式缓存Redis


    目录

    Sprig整合Redis

    导入相关pom依赖

     添加对应的的配置文件

    IEDA安装lombok插件 

    引入外部多文件

     applicationContext.xml的整合配置文件

    redis注解式缓存

    @Cacheable

     测试类注解

    @Cacheable 的测试代码

    @CachePut

     @CachePut测试代码

    @CacheEvict

    @CacheEvict测试代码


    Sprig整合Redis

    导入相关pom依赖

    1. <!--定义redis版本-->
    2. <redis.version>2.9.0</redis.version>
    3. <redis.spring.version>1.7.1.RELEASE</redis.spring.version>

    1. <!--redis整合-->
    2. <dependency>
    3. <groupId>redis.clients</groupId>
    4. <artifactId>jedis</artifactId>
    5. <version>${redis.version}</version>
    6. </dependency>
    7. <dependency>
    8. <groupId>org.springframework.data</groupId>
    9. <artifactId>spring-data-redis</artifactId>
    10. <version>${redis.spring.version}</version>
    11. </dependency>

     添加对应的的配置文件

    redis.properties

    1. redis.hostName=IP地址
    2. redis.port=6379
    3. redis.password=123456
    4. redis.timeout=10000
    5. redis.maxIdle=300
    6. redis.maxTotal=1000
    7. redis.maxWaitMillis=1000
    8. redis.minEvictableIdleTimeMillis=300000
    9. redis.numTestsPerEvictionRun=1024
    10. redis.timeBetweenEvictionRunsMillis=30000
    11. redis.testOnBorrow=true
    12. redis.testWhileIdle=true
    13. redis.expiration=3600

    spring-redis.xml

    1. "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:context="http://www.springframework.org/schema/context"
    5. xmlns:cache="http://www.springframework.org/schema/cache"
    6. xsi:schemaLocation="http://www.springframework.org/schema/beans
    7. http://www.springframework.org/schema/beans/spring-beans.xsd
    8. http://www.springframework.org/schema/context
    9. http://www.springframework.org/schema/context/spring-context.xsd
    10. http://www.springframework.org/schema/cache
    11. http://www.springframework.org/schema/cache/spring-cache.xsd">
    12. <context:property-placeholder location="classpath:redis.properties" />
    13. <bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
    14. <property name="maxIdle" value="${redis.maxIdle}"/>
    15. <property name="maxTotal" value="${redis.maxTotal}"/>
    16. <property name="maxWaitMillis" value="${redis.maxWaitMillis}"/>
    17. <property name="minEvictableIdleTimeMillis" value="${redis.minEvictableIdleTimeMillis}"/>
    18. <property name="numTestsPerEvictionRun" value="${redis.numTestsPerEvictionRun}"/>
    19. <property name="timeBetweenEvictionRunsMillis" value="${redis.timeBetweenEvictionRunsMillis}"/>
    20. <property name="testOnBorrow" value="${redis.testOnBorrow}"/>
    21. <property name="testWhileIdle" value="${redis.testWhileIdle}"/>
    22. bean>
    23. <bean id="connectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"
    24. destroy-method="destroy">
    25. <property name="poolConfig" ref="poolConfig"/>
    26. <property name="hostName" value="${redis.hostName}"/>
    27. <property name="port" value="${redis.port}"/>
    28. <property name="password" value="${redis.password}"/>
    29. <property name="timeout" value="${redis.timeout}"/>
    30. bean>
    31. <bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
    32. <property name="connectionFactory" ref="connectionFactory"/>
    33. <property name="keySerializer">
    34. <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    35. property>
    36. <property name="valueSerializer">
    37. <bean class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer"/>
    38. property>
    39. <property name="hashKeySerializer">
    40. <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
    41. property>
    42. <property name="hashValueSerializer">
    43. <bean class="org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer"/>
    44. property>
    45. <property name="enableTransactionSupport" value="true"/>
    46. bean>
    47. <bean id="redisCacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
    48. <constructor-arg name="redisOperations" ref="redisTemplate"/>
    49. <property name="defaultExpiration" value="${redis.expiration}"/>
    50. <property name="usePrefix" value="true"/>
    51. <property name="cachePrefix">
    52. <bean class="org.springframework.data.redis.cache.DefaultRedisCachePrefix">
    53. <constructor-arg index="0" value="-cache-"/>
    54. bean>
    55. property>
    56. bean>
    57. <bean id="cacheKeyGenerator" class="com.ouyang.ssm.redis.CacheKeyGenerator">bean>
    58. <cache:annotation-driven cache-manager="redisCacheManager" key-generator="cacheKeyGenerator"/>
    59. beans>

    缓存key的工具类 CacheKeyGenerator

    1. package com.ouyang.ssm.redis;
    2. import lombok.extern.slf4j.Slf4j;
    3. import org.springframework.cache.annotation.Cacheable;
    4. import org.springframework.cache.interceptor.KeyGenerator;
    5. import org.springframework.util.ClassUtils;
    6. import java.lang.reflect.Array;
    7. import java.lang.reflect.Method;
    8. /**
    9. * 指定redis中的key value存储中的key字符串的生成规则
    10. * uname:oy uname是手动赋值的
    11. *
    12. * @enableCache
    13. */
    14. @Slf4j
    15. public class CacheKeyGenerator implements KeyGenerator {
    16. // custom cache key
    17. public static final int NO_PARAM_KEY = 0;
    18. public static final int NULL_PARAM_KEY = 53;
    19. @Cacheable
    20. @Override
    21. public Object generate(Object target, Method method, Object... params) {
    22. StringBuilder key = new StringBuilder();
    23. key.append(target.getClass().getSimpleName()).append(".").append(method.getName()).append(":");
    24. if (params.length == 0) {
    25. key.append(NO_PARAM_KEY);
    26. } else {
    27. int count = 0;
    28. for (Object param : params) {
    29. if (0 != count) {//参数之间用,进行分隔
    30. key.append(',');
    31. }
    32. if (param == null) {
    33. key.append(NULL_PARAM_KEY);
    34. } else if (ClassUtils.isPrimitiveArray(param.getClass())) {
    35. int length = Array.getLength(param);
    36. for (int i = 0; i < length; i++) {
    37. key.append(Array.get(param, i));
    38. key.append(',');
    39. }
    40. } else if (ClassUtils.isPrimitiveOrWrapper(param.getClass()) || param instanceof String) {
    41. key.append(param);
    42. } else {//Java一定要重写hashCode和eqauls
    43. key.append(param.hashCode());
    44. }
    45. count++;
    46. }
    47. }
    48. String finalKey = key.toString();
    49. // IEDA要安装lombok插件
    50. log.debug("using cache key={}", finalKey);
    51. return finalKey;
    52. }
    53. }

    如果没有安装lombok插件,此时这里是会报错的

    IEDA安装lombok插件 

    安装好后重启IDEA就好了

    注意:redis.properties与jdbc.properties在与Spring做整合时会发生冲突;所以引入配置文件的地方要放到SpringContext.xml中 

     将上图两个圈起来的注释掉

    引入外部多文件

    1. <bean id="propertyConfigurer"
    2. class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    3. <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
    4. <property name="ignoreResourceNotFound" value="true" />
    5. <property name="locations">
    6. <list>
    7. <value>classpath:jdbc.propertiesvalue>
    8. <value>classpath:redis.propertiesvalue>
    9. list>
    10. property>
    11. bean>

     applicationContext.xml的整合配置文件

    1. "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:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    5. xmlns:aop="http://www.springframework.org/schema/aop"
    6. 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 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
    7. <bean id="propertyConfigurer"
    8. class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    9. <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
    10. <property name="ignoreResourceNotFound" value="true" />
    11. <property name="locations">
    12. <list>
    13. <value>classpath:jdbc.propertiesvalue>
    14. <value>classpath:redis.propertiesvalue>
    15. list>
    16. property>
    17. bean>
    18. <import resource="applocationContext-mybatis.xml">import>
    19. <import resource="spring-redis.xml">import>
    20. beans>

    pom中可以编译的文件以及目录

     测试能运行起来就行 

    redis注解式缓存

    @Cacheable

    配置在方法或类上,作用:本方法执行后,先去缓存看有没有数据,如果没有,从数据库中查找出来,给缓存中存一份,返回结果,

    下次本方法执行,在缓存未过期情况下,先在缓存中查找,有的话直接返回,没有的话从数据库查找 

    1. value:缓存位置的一段名称,不能为空
    2. key:缓存的key,默认为空,表示使用方法的参数类型及参数值作为key,支持SpEL
    3. condition:触发条件,满足条件就加入缓存,默认为空,表示全部都加入缓存,支持SpEL

     测试类注解

    1. @RunWith(SpringJUnit4ClassRunner.class)
    2. @ContextConfiguration(locations={"classpath:applicationContext.xml"})

    @Cacheable 的测试代码

    1. @Cacheable(value = "user-clz",key = "'clz:'+#cid",condition = "#cid < 5")
    2. Clazz selectByPrimaryKey(Integer cid);

    测试结果:redis中有数据,则访问redis;如果没有数据,则访问MySQL; 

    @CachePut

    类似于更新操作,即每次不管缓存中有没有结果,都从数据库查找结果,并将结果更新到缓存,并返回结果

    1. value缓存的名称,在 spring 配置文件中定义,必须指定至少一个
    2. key缓存的 key,可以为空,如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合
    3. condition缓存的条件,可以为空,使用 SpEL 编写,返回 true 或者 false,只有为 true 才进行缓存

     @CachePut测试代码

    1. @CachePut(value = "user-clz-put")
    2. Clazz selectByPrimaryKey(Integer cid);

    测试结果:只存不取

    @CacheEvict

    用来清除用在本方法或者类上的缓存数据(用在哪里清除哪里)

    1. value:缓存位置的一段名称,不能为空
    2. key:缓存的key,默认为空,表示使用方法的参数类型及参数值作为key,支持SpEL
    3. condition:触发条件,满足条件就加入缓存,默认为空,表示全部都加入缓存,支持SpEL
    4. allEntries:true表示清除value中的全部缓存,默认为false

    @CacheEvict测试代码

    1. // @CacheEvict(value = "user-clz-put",key = "'clz:'+#cid") 删除指定的缓存数据
    2. @CacheEvict(value = "user-clz-put",allEntries = true) // 删除以 user-clz-put开头的 缓存
    3. int deleteByPrimaryKey(Integer cid);

    测试结果:可以配置删除指定缓存数据,也可以删除符合规则的所有缓存数据;

  • 相关阅读:
    Nmap使用技巧总结
    JavaScript基础教程笔记(一)
    每天5分钟玩转Kubernetes | Dashboard典型使用场景
    Springboot-热部署-IDEA2023
    攻防世界m0_01
    Spring Cloud 之 Sentinel简介与GATEWAY整合实现
    记一次导入下载好的源码工程到本地工程异常解决方案
    SQLlite
    WPF项目开发-按钮的测试项目和业务项目场景用法对比和区别
    计算机毕设(附源码)JAVA-SSM基于框架的旅游管理系统
  • 原文地址:https://blog.csdn.net/weixin_65211978/article/details/128039504