您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringBoot整合Redis怎么實(shí)現(xiàn)的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇SpringBoot整合Redis怎么實(shí)現(xiàn)文章都會(huì)有所收獲,下面我們一起來看看吧。
一、引入依賴
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId><version>2.4.4</version></dependency>
二、后臺(tái)代碼:
spring.redis.database=0 spring.redis.host=192.168.1.xxx spring.redis.port=8099 spring.redis.jedis.pool.max-active=8 spring.redis.jedis.pool.max-wait=-1ms spring.redis.jedis.pool.max-idle=8 spring.redis.jedis.pool.min-idle=0 spring.redis.timeout=0
@Controller @Api(tags = "書本數(shù)據(jù)接口") @EnableCaching//開啟緩存public class BookController { }
@Cacheable(value = "book_id")//使用緩存 @Overridepublic Book getBookById(Integer id) { System.out.println("從數(shù)據(jù)庫(kù)中查詢。。。。。");return bookMapper.getBookById(id); }
關(guān)于“SpringBoot整合Redis怎么實(shí)現(xiàn)”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“SpringBoot整合Redis怎么實(shí)現(xiàn)”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。