前沿:在當下流行的分佈式架構中Dubbo是很是流行的一門技術,藉着這幾天有空學習學習,並在後面的項目中進行實戰,爲後面的分佈式項目作鋪墊。java
Dubbox 是一個分佈式服務框架,其前身是阿里巴巴開源項目Dubbo ,被國內電商及互聯網項目中使用,後期阿里巴巴中止了該項目的維護,噹噹網便在Dubbo基礎上進行優化,並繼續維護,爲了與原有的Dubbo區分,故將其命名爲Dubbox。linux
Dubbox 致力於提供高性能和透明化的RPC遠程服務調用方案,以及SOA服務治理方案。簡單的說,dubbox就是個服務框架,若是沒有分佈式的需求,實際上是不須要用的,只有在分佈式的時候,纔有dubbox這樣的分佈式服務框架的需求,而且本質上是個服務調用的東東,說白了就是個遠程服務調用的分佈式框架。
節點角色說明:git
調用關係說明:github
官方推薦使用 zookeeper 註冊中心。註冊中心負責服務地址的註冊與查找,至關於目錄服務,服務提供者和消費者只在啓動時與註冊中心交互,註冊中心不轉發請求,壓力較小。web
Zookeeper 是 Apacahe Hadoop 的子項目,是一個樹型的目錄服務,支持變動推送,適合做爲Dubbox 服務的註冊中心,工業強度較高,可用於生產環境。算法
安裝步驟:
第一步:安裝 jdk
第二步:把 zookeeper 的壓縮包上傳到 linux 系統。
注意:Alt+P 進入SFTP ,輸入put d:\zookeeper-3.4.6.tar.gz 上傳
第三步:解壓縮壓縮包spring
tar -zxvf zookeeper-3.4.6.tar.gz
第四步:進入 zookeeper-3.4.6 目錄,建立 data 文件夾。apache
mkdir data
第五步:進入conf目錄 ,把 zoo_sample.cfg 更名爲 zoo.cfg瀏覽器
cd conf mv zoo_sample.cfg zoo.cfg
第六步:打開zoo.cfg , 修改 data 屬性:dataDir=/root/zookeeper-3.4.6/dataspring-mvc
進入bin目錄,啓動服務輸入命令
./zkServer.sh start
輸出如下內容表示啓動成功
關閉服務輸入命令
./zkServer.sh stop
輸出如下提示信息
查看狀態:
./zkServer.sh status
若是啓動狀態,提示
若是未啓動狀態,提示:
Dubbo的jar包並無部署到Maven的中央倉庫中,你們在Maven的中央倉庫中能夠查找到Dubbo的最終版本是2.5.3 , 阿里巴巴解散了Dubbo團隊後由噹噹網繼續維護此項目,並更名爲 Dubbox ,座標不變,版本變動了,可是並無提交到中央倉庫。
咱們如今須要手動將Dubbox的jar包安裝到個人本地倉庫中。
先將dubbo-2.8.4.jar包放到d:\setup, 而後輸入命令
mvn install:install-file -Dfile=d:\setup\dubbo-2.8.4.jar -DgroupId=com.alibaba -DartifactId=dubbo -Dversion=2.8.4 -Dpackaging=jar
下載網址:https://github.com/dangdangdotcom/dubbox/tree/dubbox-2.8.4
下載後直接解壓,解壓後,直接cd進入dubbo中進行maven的打包,而後在target目錄就會生成dubbox-2.8.4.jar包
<projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>cn.itcast.dubboxdemo</groupId> <artifactId>dubboxdemo-service</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging> <properties> <spring.version>4.2.4.RELEASE</spring.version> </properties> <dependencies> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <!-- dubbo相關 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <version>2.8.4</version> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.6</version> </dependency> <dependency> <groupId>com.github.sgroschupf</groupId> <artifactId>zkclient</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.11.0.GA</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <configuration> <!-- 指定端口 --> <port>8081</port> <!-- 請求路徑 --> <path>/</path> </configuration> </plugin> </plugins> </build> </project>
<?xmlversion="1.0"encoding="UTF-8"?> <web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <!-- 加載spring容器 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext*.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> </web-app>
package cn.ldc.org.dubbodemo.service; /** * 業務接口 * @author Administrator * */ publicinterface UserService { public String getName(); }
package cn.ldc.org.dubbodemo.service.impl; import com.alibaba.dubbo.config.annotation.Service; import cn.itcast.dubbodemo.service.UserService; @Service publicclass UserServiceImpl implements UserService { public String getName() { return"itcast"; } }
注意:Service註解與原來不一樣,須要引入com.alibaba包下的
在src/main/resources下建立applicationContext-service.xml ,內容以下:
<?xmlversion="1.0"encoding="UTF-8"?> <beansxmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <dubbo:application name="dubboxdemo-service"/> <dubbo:registry address="zookeeper://192.168.179.128:2181"/> <dubbo:annotation package="cn.ldc.org.dubboxdemo.service" /> </beans>
注意:dubbo:annotation用於掃描@Service註解。
tomcat7:run
開發步驟:
(1)建立Maven工程(WAR)dubboxdemo-web ,在pom.xml引入依賴 ,同「dubboxdemo-service」工程。區別就是把tomcat插件的運行端口改成8082 。
(2)在webapps目錄下建立WEB-INF 目錄,並建立web.xml
<?xmlversion="1.0"encoding="UTF-8"?> <web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <!-- 解決post亂碼 --> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 指定加載的配置文件 ,經過參數contextConfigLocation加載--> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext-web.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>*</url-pattern> </servlet-mapping> </web-app>
(3)拷貝業務接口
將「dubboxdemo-service」工程的cn.ldc.org.dubboxdemo.service 包以及下面的接口拷貝至此工程。
(4)編寫Controller
package cn.ldc.org.dubboxdemo.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import cn.itcast.dubbodemo.service.UserService; @Controller @RequestMapping("/user") publicclass UserController { @Reference private UserService userService; @RequestMapping("/showName") @ResponseBody public String showName(){ returnuserService.getName(); } }
(5)編寫spring配置文件
在src/main/resources下建立applicationContext-web.xml
<?xmlversion="1.0"encoding="UTF-8"?> <beansxmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <mvc:annotation-driven > <mvc:message-converters register-defaults="false"> <bean class="org.springframework.http.converter.StringHttpMessageConverter"> <constructor-arg value="UTF-8" /> </bean> </mvc:message-converters> </mvc:annotation-driven> <!-- 引用dubbo 服務 --> <dubbo:application name="dubboxdemo-web" /> <dubbo:registry address="zookeeper://192.168.179.128:2181"/> <dubbo:annotation package="cn.ldc.org.dubboxdemo.controller" /> </beans>
測試運行
tomcat7:run
在瀏覽器輸入http://localhost:8082/user/showName,查看瀏覽器輸出結果
更多的教程請關注:非科班的科班