spring
[Spring Boot Actuator 번역] Scheduled Tasks (`scheduledtasks`)
개요scheduledtasks 엔드포인트는 애플리케이션의 예약된 작업(scheduled tasks)에 대한 정보를 제공합니다.예약된 작업 조회요청 예시$ curl 'http://localhost:8080/actuator/scheduledtasks' -i -X GET응답 예시{ "cron": [ { "expression": "0 0 0/3 1/1 * ?", "nextExecution": { "time": "2025-10-10T20:59:59.999639926Z" }, "runnable": { "target": "com.example.Processor.processOrders" } } ], "custom": [ ... ], "fixedDelay": [ ....
2025. 10. 12. 17:56