Spring Boot 快速集成 Redis的方法
Spring Boot 如何快速集成 Redis?沒錯(cuò),棧長本文教你,讓大家少走彎路!
添加依賴
使用像 Redis 這類的 NoSQL 數(shù)據(jù)庫就必須要依賴 spring-data-redis 這樣的能力包,開箱即用,Spring Boot 中都封裝好了:
引入spring-boot-starter-data-redis:
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency>
Spring Boot 基礎(chǔ)知識(shí)就不介紹了,不熟悉的可以關(guān)注公眾號(hào)Java技術(shù)棧,在后臺(tái)回復(fù):boot,可以閱讀我寫的歷史實(shí)戰(zhàn)教程。
它主要包含了下面四個(gè)依賴:
spring-boot-dependencies spring-boot-starter spring-data-redis lettuce-core添加 Redis 連接配置
Redis 自動(dòng)配置支持配置單機(jī)、集群、哨兵,來看下 RedisProperties 的參數(shù)類圖吧:
本文以單機(jī)為示例,我們?cè)?application.yml 配置文件中添加 Redis 連接配置,:
spring: redis: host: 192.168.8.88 port: 6379 password: redis2020 database: 1
也可以將參數(shù)配置在 Spring Cloud Config Server 配置中心中。
Redis 自動(dòng)配置
添加完依賴和連接配置參數(shù)之后,Redis 就能自動(dòng)配置,參考 Redis 的自動(dòng)配置類:
org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration
源碼:
@Configuration(proxyBeanMethods = false)@ConditionalOnClass(RedisOperations.class)@EnableConfigurationProperties(RedisProperties.class)@Import({ LettuceConnectionConfiguration.class, JedisConnectionConfiguration.class })public class RedisAutoConfiguration {
...
}
通過看源碼,Redis內(nèi)置兩種客戶端的自動(dòng)配置:
1)Lettuce(默認(rèn)):
org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration
2)Jedis:
org.springframework.boot.autoconfigure.data.redis.JedisConnectionConfiguration
為什么默認(rèn)Lettuce,其實(shí)文章之前的四個(gè)依賴也看出來了,請(qǐng)看默認(rèn)依賴:
自動(dòng)配置提供了兩種操作模板:
1)RedisTemplate<Object, Object>
key-value 都為 Object 對(duì)象,并且默認(rèn)用的 JDK 的序列化/反序列化器:
org.springframework.data.redis.serializer.JdkSerializationRedisSerializer
使用這個(gè)序列化器,key 和 value 都需要實(shí)現(xiàn) java.io.Serializable 接口。
2)StringRedisTemplate
key-value 都為 String 對(duì)象,默認(rèn)用的 String UTF-8 格式化的序列化/反序列化器:
org.springframework.data.redis.serializer.StringRedisSerializer
上面提到了兩種序列化器,另外還有兩種 JSON 的序列化器值得學(xué)習(xí)一下,下面配置會(huì)用到。
Jackson2JsonRedisSerializer GenericJackson2JsonRedisSerializer使用方式上,兩種都可以序列化、反序列化 JSON 數(shù)據(jù),Jackson2JsonRedisSerializer 效率高,但 GenericJackson2JsonRedisSerializer 更為通用,不需要指定泛型類型。
核心配置
除了自動(dòng)配置之外,下面是 Redis 的核心配置,主要是自定義了 RedisTemplate 使用 JSON 序列化器。
另外就是,把幾個(gè)數(shù)據(jù)類型的操作類進(jìn)行了 Bean 池化處理。
@Configurationpublic class RedisConfig { @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(factory); StringRedisSerializer stringSerializer = new StringRedisSerializer(); RedisSerializer jacksonSerializer = getJacksonSerializer(); template.setKeySerializer(stringSerializer); template.setValueSerializer(jacksonSerializer); template.setHashKeySerializer(stringSerializer); template.setHashValueSerializer(jacksonSerializer); template.setEnableTransactionSupport(true); template.afterPropertiesSet(); return template; } private RedisSerializer getJacksonSerializer() { ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); return new GenericJackson2JsonRedisSerializer(om); } @Bean public HashOperations<String, String, Object> hashOperations(RedisTemplate<String, Object> redisTemplate) { return redisTemplate.opsForHash(); } @Bean public ValueOperations<String, Object> valueOperations(RedisTemplate<String, Object> redisTemplate) { return redisTemplate.opsForValue(); } @Bean public ListOperations<String, Object> listOperations(RedisTemplate<String, Object> redisTemplate) { return redisTemplate.opsForList(); } @Bean public SetOperations<String, Object> setOperations(RedisTemplate<String, Object> redisTemplate) { return redisTemplate.opsForSet(); } @Bean public ZSetOperations<String, Object> zSetOperations(RedisTemplate<String, Object> redisTemplate) { return redisTemplate.opsForZSet(); }}
如果你只想用默認(rèn)的 JDK 序列化器,那 RedisTemplate 相關(guān)配置就不是必須的。
緩存實(shí)戰(zhàn)
下面寫了一個(gè)示例,用來緩存并讀取緩存中一個(gè)類對(duì)象。
@GetMapping('/redis/set')public String set(@RequestParam('name') String name) { User user = new User(); user.setId(RandomUtils.nextInt()); user.setName(name); user.setBirthday(new Date()); List<String> list = new ArrayList<>(); list.add('sing'); list.add('run'); user.setInteresting(list); Map<String, Object> map = new HashMap<>(); map.put('hasHouse', 'yes'); map.put('hasCar', 'no'); map.put('hasKid', 'no'); user.setOthers(map); redisOptService.set(name, user, 30000); User userValue = (User) redisOptService.get(name); return userValue.toString();}
測(cè)試:
http://localhost:8080/redis/set?name=zhangsan
返回:
User(id=62386235, name=zhangsan, birthday=Tue Jun 23 18:04:55 CST 2020, interesting=[sing, run], others={hasHouse=yes, hasKid=no, hasCar=no})
Redis中的值:
192.168.8.88:6379> get zhangsan'['cn.javastack.springboot.redis.pojo.User',{'id':62386235,'name':'zhangsan','birthday':['java.util.Date',1592906695750],'interesting':['java.util.ArrayList',['sing','run']],'others':['java.util.HashMap',{'hasHouse':'yes','hasKid':'no','hasCar':'no'}]}]'
好啦,Spring Boot 快速集成 Redis 就到這了,下篇帶來 Spring Boot 如何快速集成 Redis 分布式鎖,關(guān)注公眾號(hào)Java技術(shù)棧,第一時(shí)間推送,敬請(qǐng)期待……
本文完整源代碼也將和下篇一起上傳到Github,歡迎大家 Star 關(guān)注學(xué)習(xí)。
https://github.com/javastacks/spring-boot-best-practice
推薦去我的博客閱讀更多:
1.Java JVM、集合、多線程、新特性系列教程
2.Spring MVC、Spring Boot、Spring Cloud 系列教程
3.Maven、Git、Eclipse、Intellij IDEA 系列工具教程
4.Java、后端、架構(gòu)、阿里巴巴等大廠最新面試題
到此這篇關(guān)于Spring Boot 快速集成 Redis的方法的文章就介紹到這了,更多相關(guān)spring boot 集成redis內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. ASP實(shí)現(xiàn)加法驗(yàn)證碼2. ASP 信息提示函數(shù)并作返回或者轉(zhuǎn)向3. 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法4. asp(vbs)Rs.Open和Conn.Execute的詳解和區(qū)別及&H0001的說明5. CSS hack用法案例詳解6. ASP.NET MVC遍歷驗(yàn)證ModelState的錯(cuò)誤信息7. asp中response.write("中文")或者js中文亂碼問題8. PHP設(shè)計(jì)模式中工廠模式深入詳解9. jsp網(wǎng)頁實(shí)現(xiàn)貪吃蛇小游戲10. 用css截取字符的幾種方法詳解(css排版隱藏溢出文本)
