SpringCloud 端点
2023-06-07 15:36 更新
对于Spring Boot Actuator应用程序,可以使用一些其他管理端点。您可以使用:
- 从
POST
到/actuator/env
以更新Environment
并重新绑定@ConfigurationProperties
和日志级别。 -
/actuator/refresh
重新加载引导上下文并刷新@RefreshScope beans
。 -
/actuator/restart
关闭ApplicationContext
并重新启动(默认情况下禁用)。 -
/actuator/pause
和/actuator/resume
用于调用Lifecycle
方法(ApplicationContext
中的stop()
和start()
)。
如果禁用
/actuator/restart
端点,则/actuator/pause
和/actuator/resume
端点也将被禁用,因为它们只是/actuator/restart
的特例。
以上内容是否对您有帮助:
更多建议: