【笔记】SpringBoot项目整合Redis
前言
SpringBoot项目整合Redis
创建配置文件
- 创建
redis.properties
配置文件
1 | redis.host=127.0.0.1 |
如果有用户名和密码
1 | redis.host=127.0.0.1 |
创建配置类
1 |
|
SpringBoot项目整合Redis
redis.properties
配置文件1 | redis.host=127.0.0.1 |
1 | redis.host=127.0.0.1 |
1 | @Configuration |