- 嵌入式 Redis 可视化管理项目.
- Redis 服务信息
- Redis key 搜索
- Redis 键值查看
git clone https://github.com/huifer/view-redis.git
cd view-redis
mvn clean install
- 引入依赖
<dependency>
<groupId>com.github.huifer</groupId>
<artifactId>view-redis-boot</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
- 在启动类上增加注解
@EnableViewRedis
- 如果有拦截器请将
/redis/**/
作为忽略,不执行拦截器逻辑 - 访问
/redis/index
进入管理页面
- 引入依赖
<dependency>
<groupId>com.github.huifer</groupId>
<artifactId>view-redis-servlet</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
- 在启动类上添加
@EnableViewRedisServlet
- 设置账号密码, 默认账号密码: redis-admin\redis-admin,配置信息如下
view:
redis:
login_name: admin
password: admin
- 访问:
/redis/
- redis 配置相关截图
- redis 键值查询
- Apache License 2.0