91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

dubbo之rmi協議使用

發布時間:2020-07-10 20:11:04 來源:網絡 閱讀:729 作者:乾坤刀 欄目:網絡安全

普通接口與實現類

public interface DemoService 
{
   String sayHello(String msg);
}
public class DemoServiceImpl implements DemoService 
{
@Override
public String sayHello(String msg)
{
return "hello " + msg;
}
}

dubbo服務提供者配置

<?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-app"/>

   <!-- 使用multicast廣播注冊中心暴露服務地址 -->
   <!--<dubbo:registry address="multicast://224.5.6.7:1234"/>-->

   <!-- 用dubbo協議在20880端口暴露服務 -->
   <dubbo:protocol name="rmi" port="9123" codec="spring"/>

   <!-- 聲明需要暴露的服務接口 -->
   <dubbo:service interface="com.dubbo.rmi.DemoService" ref="demoService" registry="N/A" path="hello"/>

   <!-- 和本地bean一樣實現服務 -->
   <bean id="demoService" class="com.dubbo.rmi.DemoServiceImpl"/>

</beans>


dubbo服務消費者配置

<?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-app-consumer"/>

   <!-- 使用multicast廣播注冊中心暴露服務地址 -->
   <!-- <dubbo:registry address="multicast://224.5.6.7:1234"/> -->

   <!-- 聲明需要暴露的服務接口 -->
   <dubbo:reference interface="com.dubbo.rmi.DemoService" id="demoService" url="rmi://localhost:9123/hello" registry="N/A"/>

</beans>


springRMI服務配置

<?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:p="http://www.springframework.org/schema/p"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

   <!--RMI的服務實現類-->
   <bean id="demoService" class="com.dubbo.rmi.DemoServiceImpl" />

   <bean id="serviceExporter" class="org.springframework.remoting.rmi.RmiServiceExporter">
       <!--配置RMI的服務實現類-->
       <property name="service" ref="demoService" />
       <!--配置RMI的服務接口-->
       <property name="serviceInterface" value="com.dubbo.rmi.DemoService"/>
       <!--暴露的對外服務名-->
       <property name="serviceName" value="hello" />
       <!--服務本地注冊端口-->
       <property name="registryPort" value="9123" />
       <!--服務對外暴露端口-->
       <property name="servicePort" value="9123" />
       <!--注冊服務-->
       <property name="alwaysCreateRegistry" value="true" />
   </bean>

</beans>


springRMI客戶端配置

<?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:p="http://www.springframework.org/schema/p"
      xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

   <bean id="demoService" class="org.springframework.remoting.rmi.RmiProxyFactoryBean">
       <property name="serviceUrl" value="rmi://localhost:9123/hello" />
       <property name="serviceInterface" value="com.dubbo.rmi.DemoService"/>
   </bean>

</beans>


dubboRMI與springRMI相互調用注意點

  1. 端口須匹配

  2. <dubbo:service path="hello"> 與 springRMI配置<property name="serviceName" value="hello" /> 要一致, dubbo默認為接口全路徑



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新巴尔虎左旗| 乐至县| 且末县| 雅江县| 库伦旗| 永和县| 玉林市| 周至县| 上思县| 屯留县| 沂南县| 清水河县| 如皋市| 太仓市| 文山县| 岳西县| 白朗县| 海伦市| 黑水县| 岐山县| 旅游| 达拉特旗| 石景山区| 新邵县| 东方市| 大余县| 漯河市| 蓝田县| 沐川县| 秭归县| 花垣县| 阿拉善右旗| 金寨县| 化德县| 临汾市| 云林县| 黎城县| 保靖县| 泰顺县| 澄城县| 通河县|