diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/modules/system/rest/MonitorController.java b/mes/hd/nladmin-system/src/main/java/org/nl/modules/system/rest/MonitorController.java index f5536f76..5e56748a 100644 --- a/mes/hd/nladmin-system/src/main/java/org/nl/modules/system/rest/MonitorController.java +++ b/mes/hd/nladmin-system/src/main/java/org/nl/modules/system/rest/MonitorController.java @@ -18,6 +18,7 @@ package org.nl.modules.system.rest; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.RequiredArgsConstructor; +import org.nl.annotation.rest.AnonymousGetMapping; import org.nl.modules.system.service.MonitorService; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; @@ -36,7 +37,7 @@ public class MonitorController { private final MonitorService serverService; - @GetMapping + @AnonymousGetMapping @ApiOperation("查询服务监控") @PreAuthorize("@el.check('monitor:list')") public ResponseEntity query(){