Replies: 2 comments
-
@Tomoko-hjf PTAL |
Beta Was this translation helpful? Give feedback.
-
@daizhenyu In the istio system, the Suppose have a service named Further, mapping relationships between apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: dubbo-demo-xds-provider
spec:
hosts:
# specify service name of istio
- dubbo-demo-xds-provider
http:
- match:
- uri:
prefix: /reviews
route:
- destination:
host: reviews @SpringBootApplication
@Service
@EnableDubbo
public class XdsConsumerApplication {
@DubboReference(providedBy = "dubbo-demo-xds-provider")
private DemoService demoService;
public static void main(String[] args) {
}
} The implementation of the old version is in |
Beta Was this translation helpful? Give feedback.
-
Pre-check
Apache Dubbo Component
Java SDK (apache/dubbo)
Details
When dubbo is connected to the xds protocol, how does the name of the dubbo application correspond to the service name obtained by istio? In addition to that, which module is the xds code in at the moment?
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions