redisキャッシュオブジェクト、リスト

7539 ワード

Spring boot環境にStringRedisTemplateオブジェクトがあり、デフォルトでは自動注入で使用できますが、Redisに文字列を格納するだけで使用できます.具体的な操作は以下の通りです.
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DirtiesContext
public class Test {
    @Autowired
    private StringRedisTemplate stringRedisTemplate;

    @Test
    public void test() throws Exception {
        stringRedisTemplate.opsForValue().set("aaa", "111");
        Assert.assertEquals("111", stringRedisTemplate.opsForValue().get("aaa"));

    }
}

StringRedisTemplateのコンストラクタでは、設定されたシーケンサが文字列であるため、文字列にのみアクセスできます.コンストラクタ:
public StringRedisTemplate() {
        RedisSerializer stringSerializer = new StringRedisSerializer();
        this.setKeySerializer(stringSerializer);
        this.setValueSerializer(stringSerializer);
        this.setHashKeySerializer(stringSerializer);
        this.setHashValueSerializer(stringSerializer);
        }

現在、RedisTemplateを使用してオブジェクトにアクセスするには、対応するシーケンス化器を設定するだけでいいです.操作は次のとおりです.
package com.newegg.core.service.config;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.PropertyAccessor;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;

@Configuration
public class RedisConfig {

    /**
    * redisTemplate       jdkSerializeable,         ,          
    * @param redisConnectionFactory
    * @return
    */
    @Bean
    public RedisTemplate redisTemplate(RedisConnectionFactory redisConnectionFactory) {
        RedisTemplate redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(redisConnectionFactory);

        //   Jackson2JsonRedisSerialize        
        Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);

        ObjectMapper objectMapper = new ObjectMapper();
        objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);

        jackson2JsonRedisSerializer.setObjectMapper(objectMapper);

        //   value        key      
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(jackson2JsonRedisSerializer);
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashValueSerializer(jackson2JsonRedisSerializer);
        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }
}

次に、次のテストを行います.
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@DirtiesContext
public class Test {
    @Autowired
    private RedisTemplate template;

    @Test
    public void savereids() {
        User u = new User(1, "  ", 21);
        template.opsForValue().set(u.getId() + "", u);
        User result = (User) template.opsForValue().get(u.getId() + "");
        System.out.println(result.toString());
    }

    @Test
    public void saveHashReids(){
    for(int i=1;i<10;i++){
        User u=new User(i,"  ",21);
        template.opsForHash().put("myCache",u.getId(),u);
    }
        ArrayList list=template.opsForHash().values("myCache")
    }
}

 
転載先:https://www.cnblogs.com/Struts-pring/p/10895746.html