Spring Boot系列筆記 整合Redis

2021-10-25 09:01:02 字數 859 閱讀 3646

@autowired

stringredistemplate stringredistemplate;

@autowired

redistemplate redistemplate;

redistemplate類中提供了redis常見的五種資料型別

stringredistemplate.

opsforvalue()

[string(字串)]

stringredistemplate.

opsforlist()

[list(列表)]

stringredistemplate.

opsforset()

[set(集合)]

stringredistemplate.

opsforhash()

[hash(雜湊)]

stringredistemplate.

opsforzset()

[zset(有序集合)]

如果操作的是物件,則要考慮序列化與反序列化的問題,可參考redisautoconfiguration.class改變預設的序列化規則,redis支援以下的序列化器

自定義序列化器

@configuration

public

class

myredisconfig

}

這樣物件就儲存為json

spring boot 2 0系列筆記 二

之前使用的spring boot 版本一直是1.5.x,spring推出2.0已經有一段時間,個人感覺可以花精力去研究一些變化的新特性,網上的文章很多,我就不一一介紹了,本文主要是用spring boot 2.0構建乙個現在很流行的分布式module專案的demo,位址在本文最後會貼出.下面開始表演...

Spring Boot 系列教程

spring boot 系列教程 spring boot 快速入門教程 spring boot 整合swagger文件 spring boot 整合mybatis框架 spring boot 實現mybatis分頁 spring boot 整合druid資料來源 spring boot 實現myba...

Spring Boot乾貨系列總綱

博主16年認識sping boot,17年才開始學習。自己學習的時候也查閱了很多資料,也看到很多優秀的部落格,但是整體上感覺沒有我想象中的那麼強大,一是版本有點舊了,大多是1.4版本的,博主自己看的時候已經1.5了。二是網上資料太多,質量參差不齊。每次查資料都要在海量資源中去挑選自己想要的好累啊。所...