1. 程式人生 > >[springboot](五)整合redis

[springboot](五)整合redis

spring boot對常用的資料庫支援外,對nosql 資料庫也進行了封裝自動化。 redis介紹 Redis是目前業界使用最廣泛的記憶體資料儲存。相比memcached,Redis支援更豐富的資料結構,例如hashes, lists, sets等,同時支援資料持久化。除此之外,Redis還提供一些類資料庫的特性,比如事務,HA,主從庫。可以說Redis兼具了快取系統和資料庫的一些特性,因此有著豐富的應用場景。本文介紹Redis在Spring Boot中兩個典型的應用場景。 如何使用 1、引入 spring-boot-starter-data-redis jar包千萬不要用錯了 org.springframework.boot spring-boot-starter-data-redis 2、新增配置檔案

REDIS (RedisProperties)

Redis資料庫索引(預設為0)

spring.redis.database=0

Redis伺服器地址

spring.redis.host=127.0.0.1

Redis伺服器連線埠

spring.redis.port=6379

Redis伺服器連線密碼(預設為空)

spring.redis.password=

連線池最大連線數(使用負值表示沒有限制)

spring.redis.pool.max-active=8

連線池最大阻塞等待時間(使用負值表示沒有限制)

spring.redis.pool.max-wait=-1

連線池中的最大空閒連線

spring.redis.pool.max-idle=8

連線池中的最小空閒連線

spring.redis.pool.min-idle=0

連線超時時間(毫秒)

spring.redis.timeout=100000 3、新增cache的配置類 @Configuration @EnableCaching public class RedisConfig extends CachingConfigurerSupport{

@Bean
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();
        }
    };
}

@SuppressWarnings("rawtypes")
@Bean
public CacheManager cacheManager(RedisTemplate redisTemplate) {
    RedisCacheManager rcm = new RedisCacheManager(redisTemplate);
    //設定快取過期時間
    //rcm.setDefaultExpiration(60);//秒
    return rcm;
}

@Bean
public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory) {
    StringRedisTemplate template = new StringRedisTemplate(factory);
    Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
    ObjectMapper om = new ObjectMapper();
    om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
    om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
    jackson2JsonRedisSerializer.setObjectMapper(om);
    template.setValueSerializer(jackson2JsonRedisSerializer);
    template.afterPropertiesSet();
    return template;
}

}

3、好了,接下來就可以直接使用了 @RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(Application.class) public class TestRedis {

@Autowired
private StringRedisTemplate stringRedisTemplate;

@Autowired
private RedisTemplate redisTemplate;

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

@Test
public void testObj() throws Exception {
    User user=new User("[email protected]", "aa", "aa123456", "aa","123");
    ValueOperations<String, User> operations=redisTemplate.opsForValue();
    operations.set("com.neox", user);
    operations.set("com.neo.f", user,1,TimeUnit.SECONDS);
    Thread.sleep(1000);
    //redisTemplate.delete("com.neo.f");
    boolean exists=redisTemplate.hasKey("com.neo.f");
    if(exists){
        System.out.println("exists is true");
    }else{
        System.out.println("exists is false");
    }
   // Assert.assertEquals("aa", operations.get("com.neo.f").getUserName());
}

}

以上都是手動使用的方式,如何在查詢資料庫的時候自動使用快取呢,看下面; @Cacheable和@CacheEvict.第一個註解代表從快取中查詢指定的key,如果有,從快取中取,不再執行方法.如果沒有則執 行方法,並且將方法的返回值和指定的key關聯起來,放入到快取中.而@CacheEvict則是從快取中清除指定的key對應的資料 4、自動根據方法生成快取 @RequestMapping(“/getUser”) @Cacheable(value=”user-key”) public User getUser() { User user=userRepository.findByUserName(“aa”); System.out.println(“若下面沒出現“無快取的時候呼叫”字樣且能打印出資料表示測試成功”); return user; } 其中value的值就是快取到redis中的key 共享Session-spring-session-data-redis 分散式系統中,sessiong共享有很多的解決方案,其中託管到快取中應該是最常用的方案之一, Spring Session官方說明 Spring Session provides an API and implementations for managing a user’s session information. 如何使用 1、引入依賴 org.springframework.session spring-session-data-redis 2、Session配置: @Configuration @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 86400*30) public class SessionConfig { } maxInactiveIntervalInSeconds: 設定Session失效時間,使用Redis Session之後,原Boot的server.session.timeout屬性不再生效 好了,這樣就配置好了,我們來測試一下 3、測試 新增測試方法獲取sessionid @RequestMapping(“/uid”) String uid(HttpSession session) { UUID uid = (UUID) session.getAttribute(“uid”); if (uid == null) { uid = UUID.randomUUID(); } session.setAttribute(“uid”, uid); return session.getId(); } 登入redis 輸入 keys ‘sessions’ t