Detection points for extended application startup.
org.apache.dubbo.qos.probe.StartupProbe
Dubbo QOS startup
command auto-discovery
org.apache.dubbo.qos.probe.impl.BootstrapLivenessProbe
Maven project structure:
src
|-main
|-java
|-com
|-xxx
|-XxxStartupProbe.java (implements StartupProbe interface)
|-resources
|-META-INF
|-dubbo
|-org.apache.dubbo.qos.probe.StartupProbe (plain text file, content: xxx=com.xxx.XxxStartupProbe)
XxxStartupProbe.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