wei.zhou

提交代码

...@@ -27,10 +27,11 @@ public class IClearExportInterface { ...@@ -27,10 +27,11 @@ public class IClearExportInterface {
27 } 27 }
28 28
29 29
30 - @ApiOperation(value = "IClear 刷新缓存", httpMethod = "GET", notes = "ex: http://192.168.1.75:8080/system/refreshAppInfoCache") 30 + @ApiOperation(value = "IClearApi 刷新缓存", httpMethod = "GET", notes = "ex: http://192.168.1.75:8080/system/refreshAppInfoCache")
31 @GetMapping("/refreshAppInfoCache") 31 @GetMapping("/refreshAppInfoCache")
32 public String refreshCache() { 32 public String refreshCache() {
33 try{ 33 try{
34 + log.info("IClearApi 刷新缓存");
34 iClearApiSystemService.refreshAppInfoCache(); 35 iClearApiSystemService.refreshAppInfoCache();
35 return "Success"; 36 return "Success";
36 }catch (Exception e){ 37 }catch (Exception e){
......