1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.sandu.ximon.admin.config;
|
| import com.sandu.common.config.BaseRedisConfig;
| import org.springframework.context.annotation.Configuration;
|
| /**
| * @author chenjiantian
| * @date 2021/12/13 11:54
| * 启动redis
| */
| @Configuration
| public class RedisConfig extends BaseRedisConfig {
| }
|
|