dubbo的服务消费者中的如下配置,中的id="timeService"有什么用,删掉照样可以运行呀?
该配置中的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>
回答:
这个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();
}
}
以上是 dubbo的服务消费者中的如下配置,中的id="timeService"有什么用,删掉照样可以运行呀? 的全部内容, 来源链接: utcz.com/p/945047.html