spring boot对常用的数据库支持外,对nosql 数据库也进行了封装自动化。

redis介绍

Redis是目前业界使用最广泛的内存数据存储。相比memcached,Redis支持更丰富的数据结构,例如hashes, lists, sets等,同时支持数据持久化。除此之外,Redis还提供一些类数据库的特性,比如事务,HA,主从库。可以说Redis兼具了缓存系统和数据库的一些特性,因此有着丰富的应用场景。本文介绍Redis在Spring Boot中两个典型的应用场景。

如何使用

1、引入 spring-boot-starter-redis

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-redis</artifactId>
  4. </dependency>

2、添加配置文件

  1. # REDIS (RedisProperties)
  2. # Redis数据库索引(默认为0)
  3. spring.redis.database=0
  4. # Redis服务器地址
  5. spring.redis.host=192.168.0.58
  6. # Redis服务器连接端口
  7. spring.redis.port=6379
  8. # Redis服务器连接密码(默认为空)
  9. spring.redis.password=
  10. # 连接池最大连接数(使用负值表示没有限制)
  11. spring.redis.pool.max-active=8
  12. # 连接池最大阻塞等待时间(使用负值表示没有限制)
  13. spring.redis.pool.max-wait=-1
  14. # 连接池中的最大空闲连接
  15. spring.redis.pool.max-idle=8
  16. # 连接池中的最小空闲连接
  17. spring.redis.pool.min-idle=0
  18. # 连接超时时间(毫秒)
  19. spring.redis.timeout=0

3、添加cache的配置类

  1. @Configuration
  2. @EnableCaching
  3. public class RedisConfig extends CachingConfigurerSupport{
  4. @Bean
  5. public KeyGenerator keyGenerator() {
  6. return new KeyGenerator() {
  7. @Override
  8. public Object generate(Object target, Method method, Object... params) {
  9. StringBuilder sb = new StringBuilder();
  10. sb.append(target.getClass().getName());
  11. sb.append(method.getName());
  12. for (Object obj : params) {
  13. sb.append(obj.toString());
  14. }
  15. return sb.toString();
  16. }
  17. };
  18. }
  19. @SuppressWarnings("rawtypes")
  20. @Bean
  21. public CacheManager cacheManager(RedisTemplate redisTemplate) {
  22. RedisCacheManager rcm = new RedisCacheManager(redisTemplate);
  23. //设置缓存过期时间
  24. //rcm.setDefaultExpiration(60);//秒
  25. return rcm;
  26. }
  27. @Bean
  28. public RedisTemplate<String, String> redisTemplate(RedisConnectionFactory factory) {
  29. StringRedisTemplate template = new StringRedisTemplate(factory);
  30. Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
  31. ObjectMapper om = new ObjectMapper();
  32. om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
  33. om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
  34. jackson2JsonRedisSerializer.setObjectMapper(om);
  35. template.setValueSerializer(jackson2JsonRedisSerializer);
  36. template.afterPropertiesSet();
  37. return template;
  38. }
  39. }

3、好了,接下来就可以直接使用了

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @SpringApplicationConfiguration(Application.class)
  3. public class TestRedis {
  4. @Autowired
  5. private StringRedisTemplate stringRedisTemplate;
  6. @Autowired
  7. private RedisTemplate redisTemplate;
  8. @Test
  9. public void test() throws Exception {
  10. stringRedisTemplate.opsForValue().set("aaa", "111");
  11. Assert.assertEquals("111", stringRedisTemplate.opsForValue().get("aaa"));
  12. }
  13. @Test
  14. public void testObj() throws Exception {
  15. User user=new User("aa@126.com", "aa", "aa123456", "aa","123");
  16. ValueOperations<String, User> operations=redisTemplate.opsForValue();
  17. operations.set("com.neox", user);
  18. operations.set("com.neo.f", user,1,TimeUnit.SECONDS);
  19. Thread.sleep(1000);
  20. //redisTemplate.delete("com.neo.f");
  21. boolean exists=redisTemplate.hasKey("com.neo.f");
  22. if(exists){
  23. System.out.println("exists is true");
  24. }else{
  25. System.out.println("exists is false");
  26. }
  27. // Assert.assertEquals("aa", operations.get("com.neo.f").getUserName());
  28. }
  29. }

以上都是手动使用的方式,如何在查找数据库的时候自动使用缓存呢,看下面;

4、自动根据方法生成缓存

  1. @RequestMapping("/getUser")
  2. @Cacheable(value="user-key")
  3. public User getUser() {
  4. User user=userRepository.findByUserName("aa");
  5. System.out.println("若下面没出现“无缓存的时候调用”字样且能打印出数据表示测试成功");
  6. return user;
  7. }

其中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、引入依赖

  1. <dependency>
  2. <groupId>org.springframework.session</groupId>
  3. <artifactId>spring-session-data-redis</artifactId>
  4. </dependency>

2、Session配置:

  1. @Configuration
  2. @EnableRedisHttpSession(maxInactiveIntervalInSeconds = 86400*30)
  3. public class SessionConfig {
  4. }

maxInactiveIntervalInSeconds: 设置Session失效时间,使用Redis Session之后,原Boot的server.session.timeout属性不再生效

好了,这样就配置好了,我们来测试一下

3、测试

添加测试方法获取sessionid

  1. @RequestMapping("/uid")
  2. String uid(HttpSession session) {
  3. UUID uid = (UUID) session.getAttribute("uid");
  4. if (uid == null) {
  5. uid = UUID.randomUUID();
  6. }
  7. session.setAttribute("uid", uid);
  8. return session.getId();
  9. }

登录redis 输入 keys '*sessions*'

  1. t<spring:session:sessions:db031986-8ecc-48d6-b471-b137a3ed6bc4
  2. t(spring:session:expirations:1472976480000

其中 1472976480000为失效时间,意思是这个时间后session失效,db031986-8ecc-48d6-b471-b137a3ed6bc4 为sessionId,登录http://localhost:8080/uid 发现会一致,就说明session 已经在redis里面进行有效的管理了。

如何在两台或者多台中共享session

其实就是按照上面的步骤在另一个项目中再次配置一次,启动后自动就进行了session共享。