Spring Boot集成Redis
程序员文章站
2022-07-12 20:58:33
...
<!-- 加载 spring boot redis 包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2、在 Springboot 核心配置文件 application.properties 中配置
#配置redis spring.redis.host=localhost spring.redis.password= spring.redis.port=6379
3、配置了上面的步骤,Spring boot 将自动配置 RedisTemplate,在需要操作 redis 的类中注入 redisTemplate; 在使用的类中注入:
@Autowired
private RedisTemplate<String, String> redisTemplate;
或
@Autowired
private RedisTemplate<Object, Object> redisTemplate;
spring boot 帮我们注入的 redisTemplate 类,泛型里面只能写<String, String>、<Object, Object>
上一篇: Android开发中常用到的工具类整理
下一篇: Java 优雅判空的方法