zoukankan      html  css  js  c++  java
  • springboot整合Redis

    1.导入pom依赖

    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
        </dependency>

    2.配置application.yml

    spring:
      redis:
        database: 0
        host: 192.168.124.129
        port: 6379
        password: 123456
        jedis:
          pool:
            max-active: 100
            max-idle: 3
            max-wait: -1
            min-idle: 0
        timeout: 1000

    3.创建RedisConfig(用于Redis数据缓存)

    package com.psy.springboot02.config;
    
    import com.fasterxml.jackson.annotation.JsonAutoDetect;
    import com.fasterxml.jackson.annotation.PropertyAccessor;
    import com.fasterxml.jackson.databind.ObjectMapper;
    import org.springframework.cache.CacheManager;
    import org.springframework.cache.annotation.CachingConfigurerSupport;
    import org.springframework.cache.annotation.EnableCaching;
    import org.springframework.cache.interceptor.KeyGenerator;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.data.redis.cache.RedisCacheConfiguration;
    import org.springframework.data.redis.cache.RedisCacheManager;
    import org.springframework.data.redis.connection.RedisConnectionFactory;
    import org.springframework.data.redis.core.RedisTemplate;
    import org.springframework.data.redis.core.StringRedisTemplate;
    import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
    import org.springframework.data.redis.serializer.StringRedisSerializer;
    
    import java.lang.reflect.Method;
    import java.time.Duration;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    
    /**
     * redis配置类
     **/
    @Configuration
    @EnableCaching//开启注解式缓存
    //继承CachingConfigurerSupport,为了自定义生成KEY的策略。可以不继承。
    public class RedisConfig extends CachingConfigurerSupport {
    
        /**
         * 生成key的策略 根据类名+方法名+所有参数的值生成唯一的一个key
         *
         * @return
         */
        @Bean
        @Override
        public KeyGenerator keyGenerator() {
            return new KeyGenerator() {
                @Override
                public Object generate(Object target, Method method, Object... params) {
                    StringBuilder sb = new StringBuilder();
                    sb.append(target.getClass().getName());
                    sb.append(method.getName());
                    for (Object obj : params) {
                        sb.append(obj.toString());
                    }
                    return sb.toString();
                }
            };
        }
    
        /**
         * 管理缓存
         *
         * @param redisConnectionFactory
         * @return
         */
        @Bean
        public CacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
            //通过Spring提供的RedisCacheConfiguration类,构造一个自己的redis配置类,从该配置类中可以设置一些初始化的缓存命名空间
            // 及对应的默认过期时间等属性,再利用RedisCacheManager中的builder.build()的方式生成cacheManager:
            RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig();  // 生成一个默认配置,通过config对象即可对缓存进行自定义配置
            config = config.entryTtl(Duration.ofMinutes(1))     // 设置缓存的默认过期时间,也是使用Duration设置
                    .disableCachingNullValues();     // 不缓存空值
    
            // 设置一个初始化的缓存空间set集合
            Set<String> cacheNames = new HashSet<>();
            cacheNames.add("my-redis-cache1");
            cacheNames.add("my-redis-cache2");
    
            // 对每个缓存空间应用不同的配置
            Map<String, RedisCacheConfiguration> configMap = new HashMap<>();
            configMap.put("my-redis-cache1", config);
            configMap.put("my-redis-cache2", config.entryTtl(Duration.ofSeconds(120)));
    
            RedisCacheManager cacheManager = RedisCacheManager.builder(redisConnectionFactory)     // 使用自定义的缓存配置初始化一个cacheManager
                    .initialCacheNames(cacheNames)  // 注意这两句的调用顺序,一定要先调用该方法设置初始化的缓存名,再初始化相关的配置
                    .withInitialCacheConfigurations(configMap)
                    .build();
            return cacheManager;
        }
    
        @Bean
        public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory connectionFactory) {
            RedisTemplate<Object, Object> template = new RedisTemplate<>();
            template.setConnectionFactory(connectionFactory);
    
            //使用Jackson2JsonRedisSerializer来序列化和反序列化redis的value值(默认使用JDK的序列化方式)
            Jackson2JsonRedisSerializer serializer = new Jackson2JsonRedisSerializer(Object.class);
    
            ObjectMapper mapper = new ObjectMapper();
            mapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
            mapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
            serializer.setObjectMapper(mapper);
    
            template.setValueSerializer(serializer);
            //使用StringRedisSerializer来序列化和反序列化redis的key值
            template.setKeySerializer(new StringRedisSerializer());
            template.afterPropertiesSet();
            return template;
        }
    
        @Bean
        public StringRedisTemplate stringRedisTemplate(RedisConnectionFactory factory) {
            StringRedisTemplate stringRedisTemplate = new StringRedisTemplate();
            stringRedisTemplate.setConnectionFactory(factory);
            return stringRedisTemplate;
        }
    
    }

    常用缓存注解

    @Cacheable:作用是主要针对方法配置,能够根据方法的请求参数对其结果进行缓存 

    主要参数说明: 

      1) value  

      缓存的名称,在 spring 配置文件中定义,必须指定至少一个,

      例如:@Cacheable(value=”mycache”) 或者 @Cacheable(value={”cache1”,”cache2”}

      2) key :缓存的 key,可以为空,

      如果指定要按照 SpEL 表达式编写,如果不指定,则缺省按照方法的所有参数进行组合,

      例如:@Cacheable(value=”testcache”,key=”#userName”) 

      3) condition :缓存的条件,可以为空,

    Service:

    @Cacheable(value = "my-redis-cache1" , key = "'book' +#bid", condition = "#bid<20")
    Book selectByPrimaryKey(Integer bid);

    测试代码:

     @Test
        public void selectCacheByPrimaryKey(){
            Book book = bookService.selectByPrimaryKey(16);
            System.out.println(book);
    
            Book book2 = bookService.selectByPrimaryKey(16);
            System.out.println(book2);
        }

    @CachePut:作用是主要针对方法配置,能够根据方法的请求参数对其结果进行缓存,和 @Cacheable 不同的是,它每次都会触发真实查询

      方法的调用 

      主要参数说明:

      参数配置和@Cacheable一样。

     

     

    @CacheEvict:作用是主要针对方法配置,能够根据一定的条件对缓存进行清空 

      

      主要参数说明:

      1)value , key 和 condition 参数配置和@Cacheable一样。

      2) allEntries :

      是否清空所有缓存内容,缺省为 false,

      如果指定为 true,则方法调用后将立即清空所有缓存,

      例如:@CachEvict(value=”testcache”,allEntries=true)。

    service:

    @CacheEvict(value = "my-redis-cache2" , allEntries = true)
        void clear();

    测试代码:

    @Test
        public void clear(){
           bookService.clear();
        }

    beforeInvocation :

      是否在方法执行前就清空,缺省为 false,

      如果指定为 true,则在方法还没有执行的时候就清空缓存,

      缺省情况下,如果方法执行抛出异常,则不会清空缓存,

      例如@CachEvict(value=”testcache”,beforeInvocation=true)。

  • 相关阅读:
    Chrome---谷歌浏览器修改用户缓存文件夹 如何设置缓存路径
    Web移动端---iPhone X适配(底部栏黑横线)
    vue 项目使用 webpack 构建自动获取电脑ip地址
    vue+webpack项目打包后背景图片加载不出来问题解决
    免费苹果账号(apple id)申请ios证书p12真机调试
    将Vue移动端项目打包成手机app---HBuilder
    JS --- 本地保存localStorage、sessionStorage用法总结
    zTree & ckeditor &ValidateCode.jar 使用个人心得总结
    Java web实现综合查询+SQL语句拼接
    从小工到专家 2019.11.17
  • 原文地址:https://www.cnblogs.com/psyu/p/11844510.html
Copyright © 2011-2022 走看看