本篇內(nèi)容介紹了“SpringBoot怎么連接redis”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊、虛擬主機(jī)、營銷軟件、網(wǎng)站建設(shè)、梁平網(wǎng)站維護(hù)、網(wǎng)站推廣。
首先開啟redis服務(wù)器:
然后在springboot里面添加配置文件:
# Redis數(shù)據(jù)庫索引(默認(rèn)為0) spring.redis.database=0 # Redis服務(wù)器地址 spring.redis.host=localhost # Redis服務(wù)器連接端口 spring.redis.port=6379 # Redis服務(wù)器連接密碼(默認(rèn)為空) spring.redis.password= # 連接池最大連接數(shù)(使用負(fù)值表示沒有限制) spring.redis.pool.max-active=8 # 連接池最大阻塞等待時間(使用負(fù)值表示沒有限制) spring.redis.pool.max-wait=-1 # 連接池中的最大空閑連接 spring.redis.pool.max-idle=8 # 連接池中的最小空閑連接 spring.redis.pool.min-idle=0 # 連接超時時間(毫秒) spring.redis.timeout=0
最后在springboot的pom.xml文件中添加依賴:
org.springframework.boot spring-boot-starter-data-redis
然后在springboot的項(xiàng)目中寫一個測試類:
@RunWith(SpringRunner.class) @SpringBootTest public class ShoppingApplicationTests { @Autowired private StringRedisTemplate stringRedisTemplate; @Test public void test() throws Exception { Listlist =new ArrayList<>(); list.add("a"); list.add("b"); list.add("v"); stringRedisTemplate.opsForValue().set("abc", "測試"); stringRedisTemplate.opsForList().leftPushAll("qq",list); // 向redis存入List stringRedisTemplate.opsForList().range("qwe",0,-1).forEach(value ->{ System.out.println(value); } ); }
然后在redis里面便可以看到了剛才的新建的
然后這就是最簡單的springboot連接redis的方式了
“SpringBoot怎么連接redis”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!