123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- package beilv.web.controller.monitor;
- import org.apache.shiro.authz.annotation.RequiresPermissions;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.ModelMap;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import beilv.common.core.controller.BaseController;
- import beilv.common.core.domain.AjaxResult;
- import beilv.framework.web.service.CacheService;
- /**
- * 缓存监控
- *
- * @author ruoyi
- */
- @Controller
- @RequestMapping("/monitor/cache")
- public class CacheController extends BaseController
- {
- private String prefix = "monitor/cache";
- @Autowired
- private CacheService cacheService;
- @RequiresPermissions("monitor:cache:view")
- @GetMapping()
- public String cache(ModelMap mmap)
- {
- mmap.put("cacheNames", cacheService.getCacheNames());
- return prefix + "/cache";
- }
- @RequiresPermissions("monitor:cache:view")
- @PostMapping("/getNames")
- public String getCacheNames(String fragment, ModelMap mmap)
- {
- mmap.put("cacheNames", cacheService.getCacheNames());
- return prefix + "/cache::" + fragment;
- }
- @RequiresPermissions("monitor:cache:view")
- @PostMapping("/getKeys")
- public String getCacheKeys(String fragment, String cacheName, ModelMap mmap)
- {
- mmap.put("cacheName", cacheName);
- mmap.put("cacheKeys", cacheService.getCacheKeys(cacheName));
- return prefix + "/cache::" + fragment;
- }
- @RequiresPermissions("monitor:cache:view")
- @PostMapping("/getValue")
- public String getCacheValue(String fragment, String cacheName, String cacheKey, ModelMap mmap)
- {
- mmap.put("cacheName", cacheName);
- mmap.put("cacheKey", cacheKey);
- mmap.put("cacheValue", cacheService.getCacheValue(cacheName, cacheKey));
- return prefix + "/cache::" + fragment;
- }
- @RequiresPermissions("monitor:cache:view")
- @PostMapping("/clearCacheName")
- @ResponseBody
- public AjaxResult clearCacheName(String cacheName, ModelMap mmap)
- {
- cacheService.clearCacheName(cacheName);
- return AjaxResult.success();
- }
- @RequiresPermissions("monitor:cache:view")
- @PostMapping("/clearCacheKey")
- @ResponseBody
- public AjaxResult clearCacheKey(String cacheName, String cacheKey, ModelMap mmap)
- {
- cacheService.clearCacheKey(cacheName, cacheKey);
- return AjaxResult.success();
- }
- @RequiresPermissions("monitor:cache:view")
- @GetMapping("/clearAll")
- @ResponseBody
- public AjaxResult clearAll(ModelMap mmap)
- {
- cacheService.clearAll();
- return AjaxResult.success();
- }
- }
|