服務的調用方式多種多樣,從一開始的webservice(基於SOAP)提供wsdl的方式, 再好比EJB,RMI,restful等,每種服務在當時都有其特定的使用價值,可是隨着架構體系的升級,技術的發展單單是實現遠程通訊是遠遠不夠的。這個時候可能就須要使用服務治理。 服務治理可能要求:
註冊中心
、鏈路跟蹤
、通訊異常處理
、負載均衡
等java
爲何使用dubbo,由於他可以知足服務治理的要求 。web
dubbo是一種RPC框架。 那麼RPC框架所須要具有的基本功能:網絡通訊(服務調用)、序列化/反序列化、動態代理(serviceA->serviceB的方式改成了serviceA直接經過RPC調用ServiceB那麼確定會存在代理)、負載均衡、容錯等spring
一個服務serviceA->調用服務serviceB 那麼經過這個RPC框架已經把須要作的這一系列例如: 動態代理->序列化/反序列化->網絡通訊等操做給封裝好, 至關於在本地調用服務那樣直接使用。
<!-- 服務端的XML --> <?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://dubbo.apache.org/schema/dubbo" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd"> <!-- 應用名,惟一 --> <dubbo:application name="pay-provider" /> <!--註冊中心地址--> <dubbo:registry address="N/A"/> <!--服務提供的方式和端口,(可選),由於會默認提供地址--> <dubbo:protocol name="dubbo" port="20880"/> <!--服務提供的接口--> <dubbo:service interface="xxx.IPayService" ref="payService"/> <!--接口實現--> <bean class="xxx.provider.PayServiceImpl" id="payService"/> </beans>
// 啓動 ClassPathXmlApplicationContext loader = new ClassPathXmlApplicationContext(new String[]{"application.xml"}); loader.start(); System.in.read();
<dependency> <groupId>org.apache.dubbo</groupId> <artifactId>dubbo</artifactId> <version>2.7.3</version> </dependency>
dubbo://0.0.0.0:20880/xxx.api.IPayService?anyhost=true&application=provider&bean.name=xxx.IPayService&bind.ip=0.0.0.0&bind.port=20880&deprecated=false&dubbo=2.0.2&dynamic=true&generic=false&interface=xxx.IPayService&methods=doPay&pid=5676®ister=true&release=2.7.3&side=provider×tamp=1570123868318, dubbo version: 2.7.3, current host: 0.0.0.0
同理客戶端的配置:apache
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://dubbo.apache.org/schema/dubbo" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://dubbo.apache.org/schema/dubbo http://dubbo.apache.org/schema/dubbo/dubbo.xsd"> <!-- 應用名,惟一 --> <dubbo:application name="pay-client" /> <!--註冊中心地址--> <dubbo:registry address="N/A"/> <!--服務提供的接口--> <dubbo:reference id="payService" interface="xxx.IPayService" url="dubbo://0.0.0.0:20880/xxx.IPayService"/> </beans>
ClassPathXmlApplicationContext loader = new ClassPathXmlApplicationContext(new String[]{"application.xml"}); loader.start(); IPayService payService = (IPayService)loader.getBean("payService"); payService.doPay();