Java Code Examples for org.springframework.data.redis.serializer.GenericToStringSerializer
The following examples show how to use
org.springframework.data.redis.serializer.GenericToStringSerializer. These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: boot-mon Source File: BootmonServerRedisConfig.java License: Apache License 2.0 | 5 votes |
@Bean public RedisTemplate<String, Object> redisTemplate() { final RedisTemplate<String, Object> template = new RedisTemplate<String, Object>(); template.setConnectionFactory(jedisConnectionFactory()); template.setValueSerializer(new GenericToStringSerializer<Object>(Object.class)); return template; }
Example 2
Source Project: expper Source File: RedisConfiguration.java License: GNU General Public License v3.0 | 5 votes |
@Bean(name = "redisListTemplate") RedisTemplate<String, Long> redisListTemplate() { RedisTemplate<String, Long> redisTemplate = new RedisTemplate<>(); redisTemplate.setConnectionFactory(jedisConnectionFactory()); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setValueSerializer(new GenericToStringSerializer<>(Long.class)); return redisTemplate; }
Example 3
Source Project: expper Source File: RedisConfiguration.java License: GNU General Public License v3.0 | 5 votes |
@Bean(name = "redisCountingTemplate") RedisTemplate<String, Integer> redisCountingTemplate() { RedisTemplate<String, Integer> redisTemplate = new RedisTemplate<>(); redisTemplate.setConnectionFactory(jedisConnectionFactory()); redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setHashKeySerializer(new StringRedisSerializer()); redisTemplate.setHashValueSerializer(new GenericToStringSerializer<>(Integer.class)); return redisTemplate; }
Example 4
Source Project: tutorials Source File: RedisConfig.java License: MIT License | 5 votes |
@Bean public RedisTemplate<String, Object> redisTemplate() { final RedisTemplate<String, Object> template = new RedisTemplate<String, Object>(); template.setConnectionFactory(jedisConnectionFactory()); template.setValueSerializer(new GenericToStringSerializer<Object>(Object.class)); return template; }