feat(menu): 添加菜单缓存刷新功能和拖拽排序支持

- 在SysMenuController中添加refreshCache和refreshCurrentUserMenuCache接口
- 实现菜单缓存的按需刷新和用户级别缓存清理功能
- 优化菜单列表查询的缓存key策略,支持更精确的缓存命中
- 为菜单树查询添加缓存注解提升性能
- 在菜单增删改操作中完善缓存清理逻辑
- 添加allocateMenuToRole方法实现菜单角色分配功能
- 在前端DictTag组件中修复标签类型验证逻辑
- 为首页配置页面添加拖拽排序功能,支持快捷功能重新排列
- 集成Sortable.js实现拖拽交互和排序保存
- 优化菜单管理页面的缓存刷新机制和数据展示
- 完善配置更新事件处理,支持实时配置同步
This commit is contained in:
2026-02-05 23:07:31 +08:00
parent cd6c015d8f
commit f3d56bff45
8 changed files with 356 additions and 24 deletions

View File

@@ -138,4 +138,26 @@ public class SysMenuController extends BaseController {
String fullPath = menuService.generateFullPath(parentId, currentPath);
return success(fullPath);
}
/**
* 刷新菜单缓存
*/
@PreAuthorize("@ss.hasPermi('system:menu:list')")
@Log(title = "菜单管理", businessType = BusinessType.OTHER)
@PostMapping("/refreshCache")
public AjaxResult refreshCache() {
menuService.refreshMenuCache();
return success("菜单缓存已刷新");
}
/**
* 强制刷新当前用户菜单缓存
*/
@PreAuthorize("@ss.hasPermi('system:menu:list')")
@Log(title = "菜单管理", businessType = BusinessType.OTHER)
@PostMapping("/refreshCurrentUserMenuCache")
public AjaxResult refreshCurrentUserMenuCache() {
menuService.clearMenuCacheByUserId(getUserId());
return success("当前用户菜单缓存已刷新");
}
}