SpringBoot整合Redis資料庫

2021-10-23 04:45:20 字數 1751 閱讀 8403

redis物件序列化操作:

package com.example.zcw.redis;

import org.springframework.core.convert.converter.converter;

import org.springframework.core.serializer.support.deserializingconverter;

import org.springframework.core.serializer.support.serializingconverter;

import org.springframework.data.redis.serializer.redisserializer;

import org.springframework.data.redis.serializer.serializationexception;

/** * @classname : redisobjectserializer

* @description : redis物件序列化操作

* @author : zhaocunwei

* @date: 2020-04-08 09:22

*/public class redisobjectserializer implements redisserializer

return this.serializingconverter.

convert

(obj)

;//將物件變為位元組陣列

} @override

public object deserialize

(byte[

] data)throws serializationexception

return this.deserializingconverter.

convert

(data);}

}

建立redistemplate模板的配置類

配置多個redistemplate

編寫自定義配置類

Redis安裝 spring註解整合Redis

一 windows 下安裝 開啟乙個cmd視窗,使用cd命令切換到檔案目錄e redis,執行redis server.exe redis.windows.conf。後面那個redis.windows.conf可以省略,如果省略,會啟用預設的。輸入之後,會顯示如下介面 這時候另起乙個cmd視窗,原來...

springBoot整合dubbo整合專案

傳統spring 整合dubbo,需要繁瑣的編寫一堆堆的 xml 配置檔案 而springboot整合dubbo後,不在需要寫 xml,通過jar包引用,完 成整合,通過註解的形式完成配置。提高我們的開發效率 目錄結構 1 服務層生產者開發 hs ldm server service 1.1新增du...

SpringBoot整合系列 整合Swagger2

io.springfox springfox swagger2 2.7.0 io.springfox springfox swagger ui 2.7.0 一般無配置項,必要時可以新增自定義配置項,在配置類中讀取 swagger2的配置內容僅僅就是需要建立乙個docket例項 configurati...