SpringBoot初步連接redis詳解
在初次用springboot連接redis的時候查看官方文檔和一些博客會發(fā)現(xiàn)配置文件非常的多,這就導致了在學習的開始的時候是沒有體驗的,其實利用springboot連接redis的時候并不需要那么多的配置
首先開啟redis服務器:

然后在springboot里面添加配置文件:
# Redis數(shù)據(jù)庫索引(默認為0) spring.redis.database=0 # Redis服務器地址 spring.redis.host=localhost # Redis服務器連接端口 spring.redis.port=6379 # Redis服務器連接密碼(默認為空) spring.redis.password= # 連接池最大連接數(shù)(使用負值表示沒有限制) spring.redis.pool.max-active=8 # 連接池最大阻塞等待時間(使用負值表示沒有限制) 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文件中添加依賴:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
然后在springboot的項目中寫一個測試類:
@RunWith(SpringRunner.class)
@SpringBootTest
public class ShoppingApplicationTests {
@Autowired
private StringRedisTemplate stringRedisTemplate;
@Test
public void test() throws Exception {
List<String> list =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詳解的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站:
如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!
相關文章
Java Apollo環(huán)境搭建以及集成SpringBoot案例詳解
這篇文章主要介紹了Java Apollo環(huán)境搭建以及集成SpringBoot案例詳解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內容,需要的朋友可以參考下2021-08-08
IntelliJ IDEA 設置代碼提示或自動補全的快捷鍵功能
這篇文章主要介紹了IntelliJ IDEA 設置代碼提示或自動補全的快捷鍵功能,需要的朋友可以參考下2018-03-03
Spring Cloud基于zuul實現(xiàn)網(wǎng)關過程解析
這篇文章主要介紹了Spring Cloud基于zuul實現(xiàn)網(wǎng)關過程解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2019-12-12

