天天看點

Dubbo實戰(二) - 環境搭建(上)1 Provider

Dubbo 采用全 Spring 配置方式,透明化接入應用,對應用沒有任何 API 侵入,隻需用 Spring 加載 Dubbo 的配置即可,Dubbo 基于 Spring 的 Schema 擴充 進行加載。

如果不想使用 Spring 配置,可以通過 API 的方式 進行調用。

1 Provider

1.1 定義服務接口

  • DemoService.java (該接口需單獨打包,在服務提供方和消費方共享)
package org.apache.dubbo.demo;
public interface DemoService {
    String sayHello(String name);
}      
Dubbo實戰(二) - 環境搭建(上)1 Provider

1.2 在服務提供方實作接口

  • DemoServiceImpl.java (對服務消費方隐藏實作)
package org.apache.dubbo.demo.provider;
 
import org.apache.dubbo.demo.DemoService;
 
public class DemoServiceImpl implements DemoService {
    public String sayHello(String name) {
        return "Hello " + name;
    }
}
      
Dubbo實戰(二) - 環境搭建(上)1 Provider

1.3 用 Spring 配置聲明暴露服務

  • provider.xml:
<?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://dubbo.apache.org/schema/dubbo"
    xsi:schemaLocation="http://www.springframework.org/schema/beans        http://www.springframework.org/schema/beans/spring-beans-4.3.xsd        http://dubbo.apache.org/schema/dubbo        http://dubbo.apache.org/schema/dubbo/dubbo.xsd">
 
    <!-- 提供方應用資訊,用于計算依賴關系 -->
    <dubbo:application name="hello-world-app"  />
 
    <!-- 使用multicast廣播注冊中心暴露服務位址 -->
    <dubbo:registry address="multicast://224.5.6.7:1234" />
 
    <!-- 用dubbo協定在20880端口暴露服務 -->
    <dubbo:protocol name="dubbo" port="20880" />
 
    <!-- 聲明需要暴露的服務接口 -->
    <dubbo:service interface="org.apache.dubbo.demo.DemoService" ref="demoService" />
 
    <!-- 和本地bean一樣實作服務 -->
    <bean id="demoService" class="org.apache.dubbo.demo.provider.DemoServiceImpl" />
</beans>
      
Dubbo實戰(二) - 環境搭建(上)1 Provider

1.4 加載 Spring 配置

  • Provider.java:
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class Provider {
    public static void main(String[] args) throws Exception {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[] {"http://10.20.160.198/wiki/display/dubbo/provider.xml"});
        context.start();
        System.in.read(); // 按任意鍵退出
    }
}
      
Dubbo實戰(二) - 環境搭建(上)1 Provider