dubbo的服务消费者中的如下配置,中的id="timeService"有什么用,删掉照样可以运行呀?

作者站长头像
站长
· 阅读数 6

该配置中的id起到什么作用?<dubbo:reference interface="cn.suiwei.service.TimeService" id="timeService"></dubbo:reference>

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

    <dubbo:application name="dubbo-consumer"></dubbo:application>
    <dubbo:registry address="zookeeper://127.0.0.1:2181"/>
    <!--声明需要调用的远程服务的接口,生成远程服务的代理-->
    <dubbo:reference interface="cn.suiwei.service.TimeService" id="timeService"></dubbo:reference>


</beans>
回复
1个回答
avatar
test
2024-07-07

这个id是指定spring bean的唯一标识,是你自定义的,供消费客户端服务使用,不需要与服务提供方的service配置项相同。比如通过spring的xml配置方式使用:

public class App 
{
    public static void main( String[] args ) throws IOException {

        ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext("consumer.xml");
        context.start();
        ProviderService providerService = (ProviderService) context.getBean("providerService");
        String str = providerService.SayHello("hello");
        System.out.println(str);
        System.in.read();

    }
}
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容