forked from docs/doc-exports
Reviewed-by: Kovács, Zoltán <zkovacs@t-systems.com> Co-authored-by: Dong, Qiu Jian <qiujiandong1@huawei.com> Co-committed-by: Dong, Qiu Jian <qiujiandong1@huawei.com>
2.1 KiB
2.1 KiB
Static Target Service
Introduction
Use dubbo:reference to configure the referenced service provider in the service consumer of the Dubbo service. Use the url option to define the address of the point-to-point direct connection service provider to bypass the Registry and directly call the target service.
Description
If the original Dubbo service uses the .xml configuration file, only the configuration file needs to be modified.
<?xml version="1.0" encoding="UTF-8"?> <beans> <!-- Interfaces that can be called --> <dubbo:reference id="helloService " interface="com.dubbo.service.HelloService " url = "dubbo://helloService:20880" /> </beans>
If an annotation is used to define the referenced target service, only the annotation of the target service in the code needs to be modified.
@Reference(url = "dubbo://helloService:20880") HelloService helloService;
Parent topic: SDK Adaptation Mode