|
| 1 | +package com.cspinformatique.redis.core.repository.config; |
| 2 | + |
| 3 | +import org.springframework.beans.factory.annotation.Autowired; |
| 4 | +import org.springframework.context.annotation.Bean; |
| 5 | +import org.springframework.context.annotation.Configuration; |
| 6 | +import org.springframework.context.annotation.PropertySource; |
| 7 | +import org.springframework.core.env.Environment; |
| 8 | +import org.springframework.data.redis.connection.jedis.JedisConnectionFactory; |
| 9 | +import org.springframework.data.redis.core.RedisTemplate; |
| 10 | +import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; |
| 11 | +import org.springframework.data.redis.serializer.StringRedisSerializer; |
| 12 | +import org.springframework.data.redis.support.atomic.RedisAtomicLong; |
| 13 | + |
| 14 | +import com.cspinformatique.redis.core.entity.Consumer; |
| 15 | +import com.cspinformatique.redis.core.entity.Message; |
| 16 | + |
| 17 | +@Configuration |
| 18 | +@PropertySource("classpath:persistence/redis.properties") |
| 19 | +public class RedisConfig { |
| 20 | + @Autowired |
| 21 | + private Environment environment; |
| 22 | + |
| 23 | + public @Bean |
| 24 | + JedisConnectionFactory jedisConnectionFactory() { |
| 25 | + String hostname = environment.getProperty("redis.hostname"); |
| 26 | + Integer port = environment.getProperty("redis.port", Integer.class); |
| 27 | + String password = environment.getProperty("redis.password"); |
| 28 | + |
| 29 | + JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(); |
| 30 | + |
| 31 | + if (hostname != null) |
| 32 | + jedisConnectionFactory.setHostName(hostname); |
| 33 | + if (port != null) |
| 34 | + jedisConnectionFactory.setPort(port); |
| 35 | + if (password != null) |
| 36 | + jedisConnectionFactory.setPassword(password); |
| 37 | + |
| 38 | + jedisConnectionFactory.setUsePool(true); |
| 39 | + |
| 40 | + return jedisConnectionFactory; |
| 41 | + } |
| 42 | + |
| 43 | + public @Bean |
| 44 | + RedisAtomicLong consumerIdCounter() { |
| 45 | + return new RedisAtomicLong("consumerId", jedisConnectionFactory()); |
| 46 | + } |
| 47 | + |
| 48 | + public @Bean |
| 49 | + RedisAtomicLong messageIdCounter() { |
| 50 | + return new RedisAtomicLong("messageId", jedisConnectionFactory()); |
| 51 | + } |
| 52 | + |
| 53 | + public @Bean |
| 54 | + RedisTemplate<String, Consumer> consumerRedisTemplate() { |
| 55 | + RedisTemplate<String, Consumer> consumerRedisTemplate = new RedisTemplate<String, Consumer>(); |
| 56 | + |
| 57 | + consumerRedisTemplate.setConnectionFactory(jedisConnectionFactory()); |
| 58 | + |
| 59 | + consumerRedisTemplate.setKeySerializer(new StringRedisSerializer()); |
| 60 | + consumerRedisTemplate |
| 61 | + .setDefaultSerializer(new Jackson2JsonRedisSerializer<Consumer>( |
| 62 | + Consumer.class)); |
| 63 | + |
| 64 | + return consumerRedisTemplate; |
| 65 | + } |
| 66 | + |
| 67 | + public @Bean |
| 68 | + RedisTemplate<String, Message> messageRedisTemplate() { |
| 69 | + RedisTemplate<String, Message> messageRedisTemplate = new RedisTemplate<String, Message>(); |
| 70 | + |
| 71 | + messageRedisTemplate.setConnectionFactory(jedisConnectionFactory()); |
| 72 | + |
| 73 | + messageRedisTemplate.setKeySerializer(new StringRedisSerializer()); |
| 74 | + messageRedisTemplate |
| 75 | + .setDefaultSerializer(new Jackson2JsonRedisSerializer<Message>( |
| 76 | + Message.class)); |
| 77 | + |
| 78 | + return messageRedisTemplate; |
| 79 | + } |
| 80 | + |
| 81 | + public @Bean |
| 82 | + RedisTemplate<String, Long> messageQueueRedisTemplate() { |
| 83 | + RedisTemplate<String, Long> redisTemplate = new RedisTemplate<String, Long>(); |
| 84 | + |
| 85 | + redisTemplate.setConnectionFactory(jedisConnectionFactory()); |
| 86 | + redisTemplate.setKeySerializer(new StringRedisSerializer()); |
| 87 | + redisTemplate.setDefaultSerializer(new Jackson2JsonRedisSerializer<Long>(Long.class)); |
| 88 | + |
| 89 | + return redisTemplate; |
| 90 | + } |
| 91 | +} |
0 commit comments