Springboot集成Redis步驟
阿新 • • 發佈:2019-04-12
tid redist data- depend pen password emp pre 文件
Spring boot 集成Redis的步驟如下:
1.在pom.xml中配置相關的jar依賴;
<!--加載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=127.0.0.1
spring.redis.port=6379
spring.redis.password=123456
3.配置了上面的步驟,Spring boot將自定配置RedisTemplate,在需要操作redis的類中註入redisTemplate;
在使用的類中註入:
@Autowried
private RedisTemplate<String,String> redisTemplate;
@Atuowried
private RedisTemplate<Object,Object> redisTemplate;
spring boot幫我們註入的RedisTemplate類,泛型裏面只能寫<String,String>,<Object,Object>
Springboot集成Redis步驟