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

溫馨提示×

溫馨提示×

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

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

Dubbo入門實例

發布時間:2020-07-27 16:11:15 來源:網絡 閱讀:638 作者:wow_xiang 欄目:開發技術

現在用到了分布式框架Dubbo,隨筆謝謝Dubbo入門的實例

解釋:注冊中心,服務注冊的地方,通俗的說就是服務所在的位置

我這里的是在192.168.2.168上面

需要用到的jar包

Dubbo入門實例

這是客服端和服務端都需要的jar包,我們新建Maven工程。

項目結構圖:

Dubbo入門實例

服務端:

    一個接口(接口中的方法在實現時方法名開始不能以get開頭,莫名報錯):

    

    public interface UserService {
	public void daoGet();
}

    

    實現類(這里必須要實現Seriealizable接口,否則會出現一個錯誤):

    

public class UserServiceImpl implements UserService, Serializable {

	public void daoGet() {
		System.out.println("This is UserServiceImpl Method");
	}

}


    Dao層實現類:

    

public class UserDao {
public void testDao() throws Exception {
System.out.println("This is testDao Method");
}
}



配置文件applicationPrvider.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://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" />
      <dubbo:registry address="zookeeper://192.168.2.168:2181" />
        <!-- Service interface Concurrent Control -->
        <dubbo:service interface="per.lx.service.UserService"ref="daoService" executes="10" />
        <!-- designate implementation -->
      <bean id="daoService" class="per.lx.service.UserServiceImpl" />
</beans>

在pom.xml中的相關屬性,列出來只是為了方便理解客戶端引用服務端:
 <groupId>per.lx</groupId>
  <artifactId>dubbo-Service</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>
  <name>dubbo-Service</name>

我的服務端pom里面沒有導入的包,我的MAVEN倉庫出了點錯誤,所有用導包的方式。

啟動Service主函數:

public class Main {
	public static void main(String[] args) throws IOException {
		ClassPathXmlApplicationContext  ctx = new ClassPathXmlApplicationContext(new String[] {"applicationProvider.xml"});
		System.out.println("kaishi");
		ctx.start();
		System.out.println("任意鍵退出!_____by____lx");
		System.in.read();
	}
}

---------------------------------------------------------------------------

-------------------服務端寫完了,客戶端更簡單了----------------------------

---------------------------------------------------------------------------


客服端需要的jar包和項目結構與服務端一致,不過有一點很重要,需要在客戶端的pom.xml中加入以下代碼方便對Service的引用:

<dependency>
   	<groupId>per.lx</groupId>
   	<artifactId>dubbo-Service</artifactId>
   	<version>0.0.1-SNAPSHOT</version>
   </dependency>

這樣是完成了對Service的引用

客戶端的配置文件applicationConsumer.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://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 ">
    <!-- consumer application name -->
    <dubbo:application name="Client-Test" />
    <!-- 這是注冊中心地址 -->
    <dubbo:registry address="zookeeper://192.168.2.168:2181"/>
        <dubbo:consumer timeout="5000" />
        <!-- which service to consume? -->
        <dubbo:reference id="daoService" interface="per.lx.service.UserService"/>
    </beans>


客戶端完成服務端方法:

public class ConsumerThd {
	public void daoService(){
		ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext(	new String[] {"applicationConsumer.xml"});
		context.start();
		System.out.println("Client Success");
		UserService userService = (UserService) context.getBean("daoService");
		userService.daoGet();
	}
}


主函數:啟動客戶端的方法:
public class AppTest {
	public static void main(String[] args) throws Exception{
		ConsumerThd thd=new ConsumerThd();
		thd.daoService();
		System.in.read();
	}
}
---------------------------------------------------------------------
到這里會發現在服務器的Console打印下面出來了我們在服務端打印的信息,到這里,Dubbo入門基本就完了。




向AI問一下細節

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

AI

罗山县| 宜兰市| 汕头市| 瑞丽市| 张家界市| 叶城县| 花莲市| 崇义县| 湘潭县| 隆回县| 上栗县| 临泉县| 和龙市| 赤城县| 杭锦后旗| 兴和县| 鹿泉市| 易门县| 灵石县| 日照市| 巴塘县| 龙胜| 台南市| 清徐县| 烟台市| 新郑市| 抚州市| 宿迁市| 包头市| 平凉市| 广东省| 兰西县| 深水埗区| 丘北县| 滁州市| 顺平县| 雷山县| 新宁县| 尚义县| 抚州市| 阿拉尔市|