Expand the detection point of application survival.
org.apache.dubbo.qos.probe.LivenessProbe
Dubbo QOS live
command automatic discovery
No default implementation yet
Maven project structure:
src
|-main
|-java
|-com
|-xxx
|-XxxLivenessProbe.java (implement LivenessProbe interface)
|-resources
|-META-INF
|-dubbo
|-org.apache.dubbo.qos.probe.LivenessProbe (plain text file, content: xxx=com.xxx.XxxLivenessProbe)
XxxLivenessProbe.java:
package com.xxx;
public class XxxLivenessProbe implements LivenessProbe {
public boolean check() {
//...
}
}
META-INF/dubbo/org.apache.dubbo.qos.probe.LivenessProbe:
xxx=com.xxx.XxxLivenessProbe