mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-21 10:35:57 +08:00
remove 移除 缓存列表功能(多租户缓存功能繁杂多样 没有办法在页面管理)
This commit is contained in:
parent
30f01ab638
commit
afe626e473
@ -1,169 +0,0 @@
|
|||||||
package com.ruoyi.system.controller.monitor;
|
|
||||||
|
|
||||||
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
|
||||||
import com.ruoyi.common.core.constant.CacheConstants;
|
|
||||||
import com.ruoyi.common.core.constant.CacheNames;
|
|
||||||
import com.ruoyi.common.core.constant.GlobalConstants;
|
|
||||||
import com.ruoyi.common.core.domain.R;
|
|
||||||
import com.ruoyi.common.core.utils.StreamUtils;
|
|
||||||
import com.ruoyi.common.core.utils.StringUtils;
|
|
||||||
import com.ruoyi.common.json.utils.JsonUtils;
|
|
||||||
import com.ruoyi.common.redis.utils.CacheUtils;
|
|
||||||
import com.ruoyi.common.redis.utils.RedisUtils;
|
|
||||||
import com.ruoyi.system.domain.SysCache;
|
|
||||||
import com.ruoyi.system.domain.vo.CacheListInfoVo;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
import org.redisson.spring.data.connection.RedissonConnectionFactory;
|
|
||||||
import org.springframework.data.redis.connection.RedisConnection;
|
|
||||||
import org.springframework.web.bind.annotation.*;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 缓存监控
|
|
||||||
*
|
|
||||||
* @author Lion Li
|
|
||||||
*/
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
@RestController
|
|
||||||
@RequestMapping("/monitor/cache")
|
|
||||||
public class CacheController {
|
|
||||||
|
|
||||||
private final RedissonConnectionFactory connectionFactory;
|
|
||||||
|
|
||||||
private final static List<SysCache> CACHES = new ArrayList<>();
|
|
||||||
|
|
||||||
static {
|
|
||||||
CACHES.add(new SysCache(GlobalConstants.LOGIN_TOKEN_KEY, "用户信息"));
|
|
||||||
CACHES.add(new SysCache(CacheConstants.ONLINE_TOKEN_KEY, "在线用户"));
|
|
||||||
CACHES.add(new SysCache(CacheNames.SYS_CONFIG, "配置信息"));
|
|
||||||
CACHES.add(new SysCache(CacheNames.SYS_DICT, "数据字典"));
|
|
||||||
CACHES.add(new SysCache(GlobalConstants.CAPTCHA_CODE_KEY, "验证码"));
|
|
||||||
CACHES.add(new SysCache(GlobalConstants.REPEAT_SUBMIT_KEY, "防重提交"));
|
|
||||||
CACHES.add(new SysCache(GlobalConstants.RATE_LIMIT_KEY, "限流处理"));
|
|
||||||
CACHES.add(new SysCache(CacheNames.SYS_OSS_CONFIG, "OSS配置"));
|
|
||||||
CACHES.add(new SysCache(GlobalConstants.PWD_ERR_CNT_KEY, "密码错误次数"));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取缓存监控列表
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@GetMapping()
|
|
||||||
public R<CacheListInfoVo> getInfo() throws Exception {
|
|
||||||
RedisConnection connection = connectionFactory.getConnection();
|
|
||||||
Properties commandStats = connection.commands().info("commandstats");
|
|
||||||
|
|
||||||
List<Map<String, String>> pieList = new ArrayList<>();
|
|
||||||
if (commandStats != null) {
|
|
||||||
commandStats.stringPropertyNames().forEach(key -> {
|
|
||||||
Map<String, String> data = new HashMap<>(2);
|
|
||||||
String property = commandStats.getProperty(key);
|
|
||||||
data.put("name", StringUtils.removeStart(key, "cmdstat_"));
|
|
||||||
data.put("value", StringUtils.substringBetween(property, "calls=", ",usec"));
|
|
||||||
pieList.add(data);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
CacheListInfoVo infoVo = new CacheListInfoVo();
|
|
||||||
infoVo.setInfo(connection.commands().info());
|
|
||||||
infoVo.setDbSize(connection.commands().dbSize());
|
|
||||||
infoVo.setCommandStats(pieList);
|
|
||||||
return R.ok(infoVo);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取缓存监控缓存名列表
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@GetMapping("/getNames")
|
|
||||||
public R<List<SysCache>> cache() {
|
|
||||||
return R.ok(CACHES);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取缓存监控Key列表
|
|
||||||
*
|
|
||||||
* @param cacheName 缓存名
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@GetMapping("/getKeys/{cacheName}")
|
|
||||||
public R<Collection<String>> getCacheKeys(@PathVariable String cacheName) {
|
|
||||||
Collection<String> cacheKeys = new HashSet<>(0);
|
|
||||||
if (isCacheNames(cacheName)) {
|
|
||||||
Set<Object> keys = CacheUtils.keys(cacheName);
|
|
||||||
if (CollUtil.isNotEmpty(keys)) {
|
|
||||||
cacheKeys = StreamUtils.toList(keys, Object::toString);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
cacheKeys = RedisUtils.keys(cacheName + "*");
|
|
||||||
}
|
|
||||||
return R.ok(cacheKeys);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 获取缓存监控缓存值详情
|
|
||||||
*
|
|
||||||
* @param cacheName 缓存名
|
|
||||||
* @param cacheKey 缓存key
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@GetMapping("/getValue/{cacheName}/{cacheKey}")
|
|
||||||
public R<SysCache> getCacheValue(@PathVariable String cacheName, @PathVariable String cacheKey) {
|
|
||||||
Object cacheValue;
|
|
||||||
if (isCacheNames(cacheName)) {
|
|
||||||
cacheValue = CacheUtils.get(cacheName, cacheKey);
|
|
||||||
} else {
|
|
||||||
cacheValue = RedisUtils.getCacheObject(cacheKey);
|
|
||||||
}
|
|
||||||
SysCache sysCache = new SysCache(cacheName, cacheKey, JsonUtils.toJsonString(cacheValue));
|
|
||||||
return R.ok(sysCache);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 清理缓存监控缓存名
|
|
||||||
*
|
|
||||||
* @param cacheName 缓存名
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@DeleteMapping("/clearCacheName/{cacheName}")
|
|
||||||
public R<Void> clearCacheName(@PathVariable String cacheName) {
|
|
||||||
if (isCacheNames(cacheName)) {
|
|
||||||
CacheUtils.clear(cacheName);
|
|
||||||
} else {
|
|
||||||
RedisUtils.deleteKeys(cacheName + "*");
|
|
||||||
}
|
|
||||||
return R.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 清理缓存监控Key
|
|
||||||
*
|
|
||||||
* @param cacheKey key名
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@DeleteMapping("/clearCacheKey/{cacheName}/{cacheKey}")
|
|
||||||
public R<Void> clearCacheKey(@PathVariable String cacheName, @PathVariable String cacheKey) {
|
|
||||||
if (isCacheNames(cacheName)) {
|
|
||||||
CacheUtils.evict(cacheName, cacheKey);
|
|
||||||
} else {
|
|
||||||
RedisUtils.deleteObject(cacheKey);
|
|
||||||
}
|
|
||||||
return R.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 清理全部缓存监控
|
|
||||||
*/
|
|
||||||
@SaCheckPermission("monitor:cache:list")
|
|
||||||
@DeleteMapping("/clearCacheAll")
|
|
||||||
public R<Void> clearCacheAll() {
|
|
||||||
RedisUtils.deleteKeys("*");
|
|
||||||
return R.ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isCacheNames(String cacheName) {
|
|
||||||
return !StringUtils.contains(cacheName, ":");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
241
ruoyi-ui/src/views/monitor/cache/list.vue
vendored
241
ruoyi-ui/src/views/monitor/cache/list.vue
vendored
@ -1,241 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="app-container">
|
|
||||||
<el-row :gutter="10">
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-card style="height: calc(100vh - 125px)">
|
|
||||||
<div slot="header">
|
|
||||||
<span>缓存列表</span>
|
|
||||||
<el-button
|
|
||||||
style="float: right; padding: 3px 0"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-refresh-right"
|
|
||||||
@click="refreshCacheNames()"
|
|
||||||
></el-button>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
v-loading="loading"
|
|
||||||
:data="cacheNames"
|
|
||||||
:height="tableHeight"
|
|
||||||
highlight-current-row
|
|
||||||
@row-click="getCacheKeys"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<el-table-column
|
|
||||||
label="序号"
|
|
||||||
width="60"
|
|
||||||
type="index"
|
|
||||||
></el-table-column>
|
|
||||||
|
|
||||||
<el-table-column
|
|
||||||
label="缓存名称"
|
|
||||||
align="center"
|
|
||||||
prop="cacheName"
|
|
||||||
:show-overflow-tooltip="true"
|
|
||||||
:formatter="nameFormatter"
|
|
||||||
></el-table-column>
|
|
||||||
|
|
||||||
<el-table-column
|
|
||||||
label="备注"
|
|
||||||
align="center"
|
|
||||||
prop="remark"
|
|
||||||
:show-overflow-tooltip="true"
|
|
||||||
/>
|
|
||||||
<el-table-column
|
|
||||||
label="操作"
|
|
||||||
width="60"
|
|
||||||
align="center"
|
|
||||||
class-name="small-padding fixed-width"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button
|
|
||||||
size="mini"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-delete"
|
|
||||||
@click="handleClearCacheName(scope.row)"
|
|
||||||
></el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</el-card>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-card style="height: calc(100vh - 125px)">
|
|
||||||
<div slot="header">
|
|
||||||
<span>键名列表</span>
|
|
||||||
<el-button
|
|
||||||
style="float: right; padding: 3px 0"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-refresh-right"
|
|
||||||
@click="refreshCacheKeys()"
|
|
||||||
></el-button>
|
|
||||||
</div>
|
|
||||||
<el-table
|
|
||||||
v-loading="subLoading"
|
|
||||||
:data="cacheKeys"
|
|
||||||
:height="tableHeight"
|
|
||||||
highlight-current-row
|
|
||||||
@row-click="handleCacheValue"
|
|
||||||
style="width: 100%"
|
|
||||||
>
|
|
||||||
<el-table-column
|
|
||||||
label="序号"
|
|
||||||
width="60"
|
|
||||||
type="index"
|
|
||||||
></el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="缓存键名"
|
|
||||||
align="center"
|
|
||||||
:show-overflow-tooltip="true"
|
|
||||||
:formatter="keyFormatter"
|
|
||||||
>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
label="操作"
|
|
||||||
width="60"
|
|
||||||
align="center"
|
|
||||||
class-name="small-padding fixed-width"
|
|
||||||
>
|
|
||||||
<template slot-scope="scope">
|
|
||||||
<el-button
|
|
||||||
size="mini"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-delete"
|
|
||||||
@click="handleClearCacheKey(scope.row)"
|
|
||||||
></el-button>
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
</el-table>
|
|
||||||
</el-card>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-card :bordered="false" style="height: calc(100vh - 125px)">
|
|
||||||
<div slot="header">
|
|
||||||
<span>缓存内容</span>
|
|
||||||
<el-button
|
|
||||||
style="float: right; padding: 3px 0"
|
|
||||||
type="text"
|
|
||||||
icon="el-icon-refresh-right"
|
|
||||||
@click="handleClearCacheAll()"
|
|
||||||
>清理全部</el-button
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<el-form :model="cacheForm">
|
|
||||||
<el-row :gutter="32">
|
|
||||||
<el-col :offset="1" :span="22">
|
|
||||||
<el-form-item label="缓存名称:" prop="cacheName">
|
|
||||||
<el-input v-model="cacheForm.cacheName" :readOnly="true" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :offset="1" :span="22">
|
|
||||||
<el-form-item label="缓存键名:" prop="cacheKey">
|
|
||||||
<el-input v-model="cacheForm.cacheKey" :readOnly="true" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :offset="1" :span="22">
|
|
||||||
<el-form-item label="缓存内容:" prop="cacheValue">
|
|
||||||
<el-input
|
|
||||||
v-model="cacheForm.cacheValue"
|
|
||||||
type="textarea"
|
|
||||||
:rows="8"
|
|
||||||
:readOnly="true"
|
|
||||||
/>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</el-card>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { listCacheName, listCacheKey, getCacheValue, clearCacheName, clearCacheKey, clearCacheAll } from "@/api/monitor/cache";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "CacheList",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
cacheNames: [],
|
|
||||||
cacheKeys: [],
|
|
||||||
cacheForm: {},
|
|
||||||
loading: true,
|
|
||||||
subLoading: false,
|
|
||||||
nowCacheName: "",
|
|
||||||
tableHeight: window.innerHeight - 200
|
|
||||||
};
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.getCacheNames();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
/** 查询缓存名称列表 */
|
|
||||||
getCacheNames() {
|
|
||||||
this.loading = true;
|
|
||||||
listCacheName().then(response => {
|
|
||||||
this.cacheNames = response.data;
|
|
||||||
this.loading = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 刷新缓存名称列表 */
|
|
||||||
refreshCacheNames() {
|
|
||||||
this.getCacheNames();
|
|
||||||
this.$modal.msgSuccess("刷新缓存列表成功");
|
|
||||||
},
|
|
||||||
/** 清理指定名称缓存 */
|
|
||||||
handleClearCacheName(row) {
|
|
||||||
clearCacheName(row.cacheName).then(response => {
|
|
||||||
this.$modal.msgSuccess("清理缓存名称[" + this.nowCacheName + "]成功");
|
|
||||||
this.getCacheKeys();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 查询缓存键名列表 */
|
|
||||||
getCacheKeys(row) {
|
|
||||||
const cacheName = row !== undefined ? row.cacheName : this.nowCacheName;
|
|
||||||
if (cacheName === "") {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.subLoading = true;
|
|
||||||
listCacheKey(cacheName).then(response => {
|
|
||||||
this.cacheKeys = response.data;
|
|
||||||
this.subLoading = false;
|
|
||||||
this.nowCacheName = cacheName;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 刷新缓存键名列表 */
|
|
||||||
refreshCacheKeys() {
|
|
||||||
this.getCacheKeys();
|
|
||||||
this.$modal.msgSuccess("刷新键名列表成功");
|
|
||||||
},
|
|
||||||
/** 清理指定键名缓存 */
|
|
||||||
handleClearCacheKey(cacheKey) {
|
|
||||||
clearCacheKey(this.nowCacheName, cacheKey).then(response => {
|
|
||||||
this.$modal.msgSuccess("清理缓存键名[" + cacheKey + "]成功");
|
|
||||||
this.getCacheKeys();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 列表前缀去除 */
|
|
||||||
nameFormatter(row) {
|
|
||||||
return row.cacheName.replace(":", "");
|
|
||||||
},
|
|
||||||
/** 键名前缀去除 */
|
|
||||||
keyFormatter(cacheKey) {
|
|
||||||
return cacheKey.replace(this.nowCacheName, "");
|
|
||||||
},
|
|
||||||
/** 查询缓存内容详细 */
|
|
||||||
handleCacheValue(cacheKey) {
|
|
||||||
getCacheValue(this.nowCacheName, cacheKey).then(response => {
|
|
||||||
this.cacheForm = response.data;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 清理全部缓存 */
|
|
||||||
handleClearCacheAll() {
|
|
||||||
clearCacheAll().then(response => {
|
|
||||||
this.$modal.msgSuccess("清理全部缓存成功");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@ -365,18 +365,17 @@ insert into sys_menu values('106', '参数设置', '1', '7', 'config',
|
|||||||
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, sysdate, null, null, '通知公告菜单');
|
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, sysdate, null, null, '通知公告菜单');
|
||||||
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, sysdate, null, null, '日志管理菜单');
|
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, sysdate, null, null, '日志管理菜单');
|
||||||
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, sysdate, null, null, '在线用户菜单');
|
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, sysdate, null, null, '在线用户菜单');
|
||||||
insert into sys_menu values('112', '缓存列表', '2', '6', 'cacheList', 'monitor/cache/list', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis-list', 103, 1, sysdate, null, null, '缓存列表菜单');
|
|
||||||
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, sysdate, null, null, '缓存监控菜单');
|
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, sysdate, null, null, '缓存监控菜单');
|
||||||
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, sysdate, null, null, '表单构建菜单');
|
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, sysdate, null, null, '表单构建菜单');
|
||||||
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, sysdate, null, null, '代码生成菜单');
|
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, sysdate, null, null, '代码生成菜单');
|
||||||
insert into sys_menu values('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, sysdate, null, null, '租户管理菜单');
|
insert into sys_menu values('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, sysdate, null, null, '租户管理菜单');
|
||||||
insert into sys_menu values('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, sysdate, null, null, '租户套餐管理菜单');
|
insert into sys_menu values('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, sysdate, null, null, '租户套餐管理菜单');
|
||||||
-- springboot-admin监控
|
-- springboot-admin监控
|
||||||
insert into sys_menu values('117', 'Admin监控', '2', '5', 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, sysdate, null, null, 'Admin监控菜单');
|
insert into sys_menu values('117', 'Admin监控', '2', '5', 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, sysdate, null, null, 'Admin监控菜单');
|
||||||
-- oss菜单
|
-- oss菜单
|
||||||
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, sysdate, null, null, '文件管理菜单');
|
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, sysdate, null, null, '文件管理菜单');
|
||||||
-- xxl-job-admin控制台
|
-- xxl-job-admin控制台
|
||||||
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, sysdate, null, null, 'Xxl-Job控制台菜单');
|
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, sysdate, null, null, 'Xxl-Job控制台菜单');
|
||||||
|
|
||||||
-- 三级菜单
|
-- 三级菜单
|
||||||
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, sysdate, null, null, '操作日志菜单');
|
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, sysdate, null, null, '操作日志菜单');
|
||||||
|
|||||||
@ -375,19 +375,18 @@ insert into sys_menu values('106', '参数设置', '1', '7', 'config',
|
|||||||
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', '1', '0', 'C', '0', '0', 'system:notice:list', 'message', 103, 1, now(), null, null, '通知公告菜单');
|
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', '1', '0', 'C', '0', '0', 'system:notice:list', 'message', 103, 1, now(), null, null, '通知公告菜单');
|
||||||
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', '1', '0', 'M', '0', '0', '', 'log', 103, 1, now(), null, null, '日志管理菜单');
|
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', '1', '0', 'M', '0', '0', '', 'log', 103, 1, now(), null, null, '日志管理菜单');
|
||||||
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', '1', '0', 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, now(), null, null, '在线用户菜单');
|
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', '1', '0', 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, now(), null, null, '在线用户菜单');
|
||||||
insert into sys_menu values('112', '缓存列表', '2', '6', 'cacheList', 'monitor/cache/list', '', '1', '0', 'C', '0', '0', 'monitor:cache:list', 'redis-list', 103, 1, now(), null, null, '缓存列表菜单');
|
|
||||||
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', '1', '0', 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, now(), null, null, '缓存监控菜单');
|
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', '1', '0', 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, now(), null, null, '缓存监控菜单');
|
||||||
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', '1', '0', 'C', '0', '0', 'tool:build:list', 'build', 103, 1, now(), null, null, '表单构建菜单');
|
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', '1', '0', 'C', '0', '0', 'tool:build:list', 'build', 103, 1, now(), null, null, '表单构建菜单');
|
||||||
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', '1', '0', 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, now(), null, null, '代码生成菜单');
|
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', '1', '0', 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, now(), null, null, '代码生成菜单');
|
||||||
insert into sys_menu values('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', '1', '0', 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, now(), null, null, '租户管理菜单');
|
insert into sys_menu values('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', '1', '0', 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, now(), null, null, '租户管理菜单');
|
||||||
insert into sys_menu values('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', '1', '0', 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, now(), null, null, '租户套餐管理菜单');
|
insert into sys_menu values('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', '1', '0', 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, now(), null, null, '租户套餐管理菜单');
|
||||||
|
|
||||||
-- springboot-admin监控
|
-- springboot-admin监控
|
||||||
insert into sys_menu values('117', 'Admin监控', '2', '5', 'Admin', 'monitor/admin/index', '', '1', '0', 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, now(), null, null, 'Admin监控菜单');
|
insert into sys_menu values('117', 'Admin监控', '2', '5', 'Admin', 'monitor/admin/index', '', '1', '0', 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, now(), null, null, 'Admin监控菜单');
|
||||||
-- oss菜单
|
-- oss菜单
|
||||||
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', '1', '0', 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, now(), null, null, '文件管理菜单');
|
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', '1', '0', 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, now(), null, null, '文件管理菜单');
|
||||||
-- xxl-job-admin控制台
|
-- xxl-job-admin控制台
|
||||||
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', '1', '0', 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, now(), null, null, 'Xxl-Job控制台菜单');
|
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', '1', '0', 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, now(), null, null, 'Xxl-Job控制台菜单');
|
||||||
|
|
||||||
-- 三级菜单
|
-- 三级菜单
|
||||||
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', '1', '0', 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, now(), null, null, '操作日志菜单');
|
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', '1', '0', 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, now(), null, null, '操作日志菜单');
|
||||||
|
|||||||
@ -242,19 +242,18 @@ insert into sys_menu values('106', '参数设置', '1', '7', 'config',
|
|||||||
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, sysdate(), null, null, '通知公告菜单');
|
insert into sys_menu values('107', '通知公告', '1', '8', 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'message', 103, 1, sysdate(), null, null, '通知公告菜单');
|
||||||
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, sysdate(), null, null, '日志管理菜单');
|
insert into sys_menu values('108', '日志管理', '1', '9', 'log', '', '', 1, 0, 'M', '0', '0', '', 'log', 103, 1, sysdate(), null, null, '日志管理菜单');
|
||||||
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, sysdate(), null, null, '在线用户菜单');
|
insert into sys_menu values('109', '在线用户', '2', '1', 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'online', 103, 1, sysdate(), null, null, '在线用户菜单');
|
||||||
insert into sys_menu values('112', '缓存列表', '2', '6', 'cacheList', 'monitor/cache/list', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis-list', 103, 1, sysdate(), null, null, '缓存列表菜单');
|
|
||||||
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, sysdate(), null, null, '缓存监控菜单');
|
insert into sys_menu values('113', '缓存监控', '2', '5', 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'redis', 103, 1, sysdate(), null, null, '缓存监控菜单');
|
||||||
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, sysdate(), null, null, '表单构建菜单');
|
insert into sys_menu values('114', '表单构建', '3', '1', 'build', 'tool/build/index', '', 1, 0, 'C', '0', '0', 'tool:build:list', 'build', 103, 1, sysdate(), null, null, '表单构建菜单');
|
||||||
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, sysdate(), null, null, '代码生成菜单');
|
insert into sys_menu values('115', '代码生成', '3', '2', 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'code', 103, 1, sysdate(), null, null, '代码生成菜单');
|
||||||
insert into sys_menu values ('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, sysdate(), null, null, '租户管理菜单');
|
insert into sys_menu values ('121', '租户管理', '6', '1', 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'list', 103, 1, sysdate(), null, null, '租户管理菜单');
|
||||||
insert into sys_menu values ('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, sysdate(), null, null, '租户套餐管理菜单');
|
insert into sys_menu values ('122', '租户套餐管理', '6', '2', 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'form', 103, 1, sysdate(), null, null, '租户套餐管理菜单');
|
||||||
|
|
||||||
-- springboot-admin监控
|
-- springboot-admin监控
|
||||||
insert into sys_menu values('117', 'Admin监控', '2', '5', 1, 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, sysdate(), null, null, 'Admin监控菜单');
|
insert into sys_menu values('117', 'Admin监控', '2', '5', 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'dashboard', 103, 1, sysdate(), null, null, 'Admin监控菜单');
|
||||||
-- oss菜单
|
-- oss菜单
|
||||||
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, sysdate(), null, null, '文件管理菜单');
|
insert into sys_menu values('118', '文件管理', '1', '10', 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'upload', 103, 1, sysdate(), null, null, '文件管理菜单');
|
||||||
-- xxl-job-admin控制台
|
-- xxl-job-admin控制台
|
||||||
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, sysdate(), null, null, 'Xxl-Job控制台菜单');
|
insert into sys_menu values('120', '任务调度中心', '2', '5', 'XxlJob', 'monitor/xxljob/index', '', 1, 0, 'C', '0', '0', 'monitor:xxljob:list', 'job', 103, 1, sysdate(), null, null, 'Xxl-Job控制台菜单');
|
||||||
|
|
||||||
-- 三级菜单
|
-- 三级菜单
|
||||||
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, sysdate(), null, null, '操作日志菜单');
|
insert into sys_menu values('500', '操作日志', '108', '1', 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'form', 103, 1, sysdate(), null, null, '操作日志菜单');
|
||||||
|
|||||||
@ -1414,8 +1414,6 @@ INSERT sys_menu VALUES (108, N'日志管理', 1, 9, N'log', N'', N'', 1, 0, N'M'
|
|||||||
GO
|
GO
|
||||||
INSERT sys_menu VALUES (109, N'在线用户', 2, 1, N'online', N'monitor/online/index', N'', 1, 0, N'C', N'0', N'0', N'monitor:online:list', N'online', 103, 1, getdate(), NULL, NULL, N'在线用户菜单')
|
INSERT sys_menu VALUES (109, N'在线用户', 2, 1, N'online', N'monitor/online/index', N'', 1, 0, N'C', N'0', N'0', N'monitor:online:list', N'online', 103, 1, getdate(), NULL, NULL, N'在线用户菜单')
|
||||||
GO
|
GO
|
||||||
INSERT sys_menu VALUES (112, N'缓存列表', 2, 6, N'cacheList', N'monitor/cache/list', N'', 1, 0, N'C', N'0', N'0', N'monitor:cache:list', N'redis-list', 103, 1, getdate(), NULL, NULL, N'缓存列表菜单')
|
|
||||||
GO
|
|
||||||
INSERT sys_menu VALUES (113, N'缓存监控', 2, 5, N'cache', N'monitor/cache/index', N'', 1, 0, N'C', N'0', N'0', N'monitor:cache:list', N'redis', 103, 1, getdate(), NULL, NULL, N'缓存监控菜单')
|
INSERT sys_menu VALUES (113, N'缓存监控', 2, 5, N'cache', N'monitor/cache/index', N'', 1, 0, N'C', N'0', N'0', N'monitor:cache:list', N'redis', 103, 1, getdate(), NULL, NULL, N'缓存监控菜单')
|
||||||
GO
|
GO
|
||||||
INSERT sys_menu VALUES (114, N'表单构建', 3, 1, N'build', N'tool/build/index', N'', 1, 0, N'C', N'0', N'0', N'tool:build:list', N'build', 103, 1, getdate(), NULL, NULL, N'表单构建菜单')
|
INSERT sys_menu VALUES (114, N'表单构建', 3, 1, N'build', N'tool/build/index', N'', 1, 0, N'C', N'0', N'0', N'tool:build:list', N'build', 103, 1, getdate(), NULL, NULL, N'表单构建菜单')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user