启动启动探针
扩展说明
扩展应用程序启动的检测点。
扩展端口
org.apache.dubbo.qos.probe.StartupProbe
扩展配置
Dubbo QOS startup
命令自动发现
已知扩展
org.apache.dubbo.qos.probe.impl.BootstrapLivenessProbe
扩展示例
Maven 项目结构
src
|-main
|-java
|-com
|-xxx
|-XxxStartupProbe.java (implement the StartupProbe interface)
|-resources
|-META-INF
|-dubbo
|-org.apache.dubbo.qos.probe.StartupProbe (plain text file, content: xxx=com.xxx.XxxStartupProbe)
XxxStartupProbee.java
package com.xxx;
public class XxxStartupProbe implements StartupProbe {
public boolean check() {
//...
}
}
META-INF/dubbo/org.apache.dubbo.qos.probe.StartupProbe
xxx=com.xxx.XxxStartupProbe
上次修改时间:2023 年 1 月 2 日: 增强英文文档 (#1798) (95a9f4f6c1c)