1
0
mirror of https://gitee.com/incloudcode/yexuejc-springboot.git synced 2025-07-13 23:37:28 +08:00

683 B

redis 使用指南

  • 本项目依赖不向下传递

引入依赖 pom.xml

 <dependencies>
    <!-- 使用Redis -->
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-redis</artifactId>
    </dependency>
    <dependency>
        <groupId>redis.clients</groupId>
        <artifactId>jedis</artifactId>
    </dependency>
 </dependencies>

配置 application.properties

#reids
spring.redis.host=你的reids地址
spring.redis.password=密码
spring.redis.port=端口

使用example

参考RedisTest.java