0%

DUBBO1—创建DUBBO和ZOOKEEPER的SSM列子

重要代码:
提供者:dubbo-provider.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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=“hello-world-provider” />

<!– 使用multicast广播注册中心暴露服务地址 –>
<!– <dubbo:registry address=”multicast://224.5.6.7:1234″ /> –>

<!– 使用zookeeper注册中心暴露服务地址 –>
<dubbo:registry address=“zookeeper://127.0.0.1:2181” />

<!–dubbo协议在20880端口暴露服务 –>
<dubbo:protocol name=“dubbo” port=“20880” />

<!– 声明需要暴露的服务接口 –>
<dubbo:service interface=“com.wqc.provider.service.Userservice” ref=“userservice” />

<!– 和本地bean一样实现服务 –>

<bean id=“userservice” class=“com.wqc.provider.service.UserServiceImpl” />

</beans>

调用者:dubbo-custom.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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=“hello-world-customer”/>
<!– 使用multicast广播注册中心暴露发现服务地址 –>
<dubbo:registry address=“zookeeper://127.0.0.1:2181” check=“false”/>
<!– 生成远程服务代理,可以和本地bean一样使用demoService –>
<dubbo:reference id=“userservice” interface=“com.wqc.provider.service.Userservice” check=“false”/>
</beans>