1. 程式人生 > >SpringBoot | 集成Redis

SpringBoot | 集成Redis

projects oot art cts data star info ase releases

Windows下安裝:

https://github.com/MicrosoftArchive/redis/releases

技術分享圖片

zip下就解包到自定義目錄下,msi就跟著步驟安裝

進入安裝目錄下運行命令,

redis-server.exe redis.windows.conf

技術分享圖片

如上圖就表示成功安裝

在springboot集成redis:

doc: https://spring.io/projects/spring-data-redis

依賴:

   <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>

配置文件application.properties:

spring.redis.host=127.0.0.1
spring.redis.port=6379

SpringBoot | 集成Redis