11分鐘學會SpringBoot整合redis元件

2021-10-03 21:08:42 字數 1766 閱讀 2218

本人部落格:(●ˇ∀ˇ●)

不要跟過去的自己比,要期待未來的自己,珍愛現在的自己

>

>

org.springframework.bootgroupid

>

>

spring-boot-starter-data-redisartifactid

>

dependency

>

# redis資料庫索引(預設為0)

spring.redis.database=0

# redis伺服器位址

spring.redis.host=127.0.0.1

# redis伺服器連線埠

spring.redis.port=6379

# redis伺服器連線密碼(預設為空)

spring.redis.password=

# 連線池最大連線數(使用負值表示沒有限制)

spring.redis.jedis.pool.max-active=200

# 連線池最大阻塞等待時間(使用負值表示沒有限制)

spring.redis.jedis.pool.max-wait=-1

# 連線池中的最大空閒連線

spring.redis.jedis.pool.max-idle=10

# 連線池中的最小空閒連線

spring.redis.jedis.pool.min-idle=10

# 連線超時時間(毫秒)

spring.redis.timeout=1000

springboot自動在容器中生成了乙個redistemplate和乙個stringredistemplate

第一種:(新增方式新增配置)

@configuration

public

class

myredisconfig

@bean

public redistemplate

deptredistemplate

( redisconnectionfactory redisconnectionfactory)

throws unknownhostexception

//cachemanagercustomizers可以來定製快取的一些規則

@primary

//將某個快取管理器作為預設的

@bean

public rediscachemanager employeecachemanager

(redistemplate

empredistemplate)

@bean

public rediscachemanager deptcachemanager

(redistemplate

deptredistemplate)

}

第二種:(重寫redistemplate)

@configuration

public

class

redisconfig

}

本部落格原文:/posts/c0ba78a5.html

11分鐘學會Tomcat多專案對映

本人部落格 正是因為這一點一滴覺得還有希望的自己,才是最無可救藥的吧。而有時候想要每個專案都單獨對映到不同的網域名稱來訪問,又將如何做呢,不妨試試以下配置修改。虛擬路徑部署檔案說明路徑 path 指虛擬訪問路徑 為空時表示 訪問 name blog.onfree.cn unpackwars true...

10分鐘學會Google Map API

前幾天玩了玩google的map api,感覺還不錯,很簡單。但凡有過任何程式設計經驗的同學,看完以下的教程,都可以在10分鐘內掌握它的主要功能。另外我還做了個簡單的小例子,有興趣的話,請參見 第一步 去 申請乙個keyid 第二步 在html的之間加上對mapapi函式庫的引用,第三步 在html...

30分鐘學會使用

vi 是unix世界裡極為普遍的全螢幕文字 編輯器,vim是它的改進版本vi improved的簡稱。幾乎可以說任何一台 unix 機器都會提供這套軟體。linux當然也有,它的 vi 其實是 elvis 版權問題 不過它們都差不多。熟悉 dos 下的文書處理後,也許會感到 vi 並不好用 unix...