java實現分散式專案搭建

王廷駿發表於2018-04-20

1 分散式

1.1 什麼是分散式

  1. 分散式系統一定是由多個節點組成的系統。其中,節點指的是計算機伺服器,而且這些節點一般不是孤立的,而是互通的。
  2. 這些連通的節點上部署了我們的節點,並且相互的操作會有協同。分散式系統對於使用者而言,他們面對的就是一個伺服器,提供使用者需要的服務而已,而實際上這些服務是通過背後的眾多伺服器組成的一個分散式系統,因此分散式系統看起來像是一個超級計算機一樣。

1.2 分散式與叢集的區別

  1. 叢集是同一個系統部在不同的伺服器上,例如一個登陸系統部在不同的伺服器上.
  2. 分散式是不同的系統部在不同的伺服器上,伺服器之間相互呼叫.

小飯店原來只有一個廚師,切菜洗菜備料炒菜全乾。後來客人多了,廚房一個廚師忙不過來,又請了個廚師,兩個廚師都能炒一樣的菜,這兩個廚師的關係是叢集。為了讓廚師專心炒菜,把菜做到極致,又請了個配菜師負責切菜,備菜,備料,廚師和配菜師的關係是分散式,一個配菜師也忙不過來了,又請了個配菜師,兩個配菜師關係是叢集.
摘自知乎,李鵬飛

2 搭建分散式專案

準備工具:eclipse,裝有CentOS7系統的VMwarm,zookeeper.......最重要的,一臺三年高齡的老人機.

1 首先建立一個父類的maven專案,打包方式為pom.

在eclipse中建立一個父類maven專案,打包方式為pom.為什麼要建立一個父類的maven專案呢?因為要使用這個maven專案進行各個jar包版本的管理,子類想要jar包直接跟父類要就可以. xml

<project xmlns="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>com.itqf</groupId>
  <artifactId>sping-parent</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>pom</packaging>
  
  <!-- 定義所有jar包的版本 -->
	  <properties>
	    <junit.version>4.12</junit.version>
		<spring.version>4.2.4.RELEASE</spring.version>
		<mybatis.version>3.2.8</mybatis.version>
		<mybatis.spring.version>1.2.2</mybatis.spring.version>
		<mybatis.paginator.version>1.2.15</mybatis.paginator.version>
		<mysql.version>5.1.32</mysql.version>
		<slf4j.version>1.6.4</slf4j.version>
		<jackson.version>2.4.2</jackson.version>
		<druid.version>1.0.9</druid.version>
		<httpclient.version>4.3.5</httpclient.version>
		<jstl.version>1.2</jstl.version>
		<servlet-api.version>2.5</servlet-api.version>
		<jsp-api.version>2.0</jsp-api.version>
		<joda-time.version>2.5</joda-time.version>
		<commons-lang3.version>3.3.2</commons-lang3.version>
		<commons-io.version>1.3.2</commons-io.version>
		<commons-net.version>3.3</commons-net.version>
		<pagehelper.version>3.4.2-fix</pagehelper.version>
		<jsqlparser.version>0.9.1</jsqlparser.version>
		<commons-fileupload.version>1.3.1</commons-fileupload.version>
		<jedis.version>2.7.2</jedis.version>
		<solrj.version>4.10.3</solrj.version>
		<dubbo.version>2.5.3</dubbo.version>
		<zookeeper.version>3.4.7</zookeeper.version>
		<zkclient.version>0.1</zkclient.version>
		<activemq.version>5.11.2</activemq.version>
		<freemarker.version>2.3.23</freemarker.version>
		<quartz.version>2.2.2</quartz.version>
	  </properties>
	  <!-- 管理所有專案中用到的jar包,並不做真正的依賴 -->
	  <dependencyManagement>
	      <dependencies>
			<!-- 時間操作元件 -->
			<dependency>
				<groupId>joda-time</groupId>
複製程式碼

2 建立一個maven的聚合工程.

2.1 建立maven聚合工程,繼承父工程.

聚合工程:可以將專案中的controller層,view層等都獨立成一個工程,最終執行的時候整合到一起執行.

pom.xml

<project xmlns="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>
  <parent>
    <groupId>com.itqf</groupId>
    <artifactId>sping-parent</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <groupId>com.itqf</groupId>
  <artifactId>sping-manager</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>pom</packaging>
  
  <dependencies>
      <dependency>
          <groupId>com.itqf</groupId>
          <artifactId>sping-common</artifactId>
          <version>0.0.1-SNAPSHOT</version>
      </dependency>
  </dependencies>
  
  <build>
		<plugins>
			<plugin>
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
				<configuration>
					<port>8083</port>
					<path>/</path>
				</configuration>
			</plugin>
		</plugins>
 </build>
  
  <modules>
  	<module>sping-manager-pojo</module>
  	<module>sping-manager-interface</module>
  	<module>sping-manager-service</module>
  	<module>sping-manager-mapper</module>
  </modules>
</project>
複製程式碼

2.2 在聚合工程中建立maven Module,命名sping-manager-pojo(實體類層).

  1. pojo是一個普通的jar格式,不需要依賴父工程.
    pom.xml
<project xmlns="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>
  <parent>
    <groupId>com.itqf</groupId>
    <artifactId>sping-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>sping-manager-pojo</artifactId>
</project>
複製程式碼

2.3 在聚合工程中建立maven Module,命名sping-manager-mapper(dao層).

  • 在pom.xml檔案中依賴pojo.因為mapper層的方法返回的是一個實體類物件的話,那麼需要用到pojo.
  • 匯入依賴jar包.
    xml
<project xmlns="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>
  <parent>
    <groupId>com.itqf</groupId>
    <artifactId>sping-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>sping-manager-mapper</artifactId>
  
  <!-- 依賴pojo -->
  <dependencies>
      <dependency>
          <groupId>com.itqf</groupId>
          <artifactId>sping-manager-pojo</artifactId>
          <version>0.0.1-SNAPSHOT</version>
      </dependency>
      
      <!-- Mybatis -->
			<dependency>
				<groupId>org.mybatis</groupId>
				<artifactId>mybatis</artifactId>
				<version>${mybatis.version}</version>
			</dependency>
			<dependency>
				<groupId>org.mybatis</groupId>
				<artifactId>mybatis-spring</artifactId>
				<version>${mybatis.spring.version}</version>
			</dependency>
			<dependency>
				<groupId>com.github.miemiedev</groupId>
				<artifactId>mybatis-paginator</artifactId>
				<version>${mybatis.paginator.version}</version>
			</dependency>
			<dependency>
				<groupId>com.github.pagehelper</groupId>
				<artifactId>pagehelper</artifactId>
				<version>${pagehelper.version}</version>
			</dependency>
			<!-- MySql -->
			<dependency>
				<groupId>mysql</groupId>
				<artifactId>mysql-connector-java</artifactId>
				<version>${mysql.version}</version>
			</dependency>
			<!-- 連線池 -->
			<dependency>
				<groupId>com.alibaba</groupId>
				<artifactId>druid</artifactId>
				<version>${druid.version}</version>
			</dependency>
      
  </dependencies>
</project>
複製程式碼

2.4 在聚合工程中建立sping-manager-interface(介面),將所有的service介面都放到獨立的工程當中.

  • 介面中方法返回值如果是實體類,需要用到pojo.所以在pom中依賴pojo xml
<project xmlns="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>
  <parent>
    <groupId>com.itqf</groupId>
    <artifactId>sping-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>sping-manager-interface</artifactId>
  
  <dependencies>
      <dependency>
          <groupId>com.itqf</groupId>
          <artifactId>sping-manager-pojo</artifactId>
          <version>0.0.1-SNAPSHOT</version>
      </dependency>
  </dependencies>
  
</project>
複製程式碼

2.5 在聚合專案中建立sping-manager-service(interface的實現類).打包方式為war

因為將controller層與service層分開了,所以在執行啟動的時候要講controller和service單獨使用tomcat釋出,將聚合工程中所需要的配置檔案都放入service中,這樣在Tomcat啟動的時候回將配置檔案都進行載入整合.

  • service需要用到介面,所以依賴介面sping-manager-interface.
  • service需要用到pojo,也需要呼叫到mapper,所以直接依賴mapper就可以,以為mapper已經依賴了pojo (依賴傳遞).
  • service需要被spring管理,讓spring給service建立物件
  • service需要dubbo的包(後面對dubbo進行介紹)
  • service需要使用到SOA,將service當成一個服務釋出出去.

配置檔案
SqlMapConfig.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
		PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
		"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
</configuration>
複製程式碼

db.properties

db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/taotao?characterEncoding=UTF-8
db.username=root
db.password=root
複製程式碼

applicationContext-tx.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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.2.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-4.2.xsd">
   
   <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
       <property name="dataSource" ref="dataSource"></property>
   </bean>     
   
   <tx:advice id="adviceId" transaction-manager="txManager">
      <tx:attributes>
           <tx:method name="add*" propagation="REQUIRED"/>
           <tx:method name="save*" propagation="REQUIRED"/>
           <tx:method name="insert*" propagation="REQUIRED"/>
           <tx:method name="update*" propagation="REQUIRED"/>
           <tx:method name="del*" propagation="REQUIRED"/>
           <tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
           <tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
      
      </tx:attributes>
  </tx:advice>
   
  <aop:config>
      <aop:advisor advice-ref="adviceId" pointcut="execution(* com.itqf.service..*.*(..))"/>
  </aop:config>     
        
        
</beans>
複製程式碼

applicationContext-dao.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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.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-4.2.xsd">
   
   <context:property-placeholder location="classpath:resource/*.properties"/>

   <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${db.driver}"></property>
        <property name="url" value="${db.url}"></property>
        <property name="username" value="${db.username}"></property>
        <property name="password" value="${db.password}"></property>
        <property name="maxActive" value="10"></property>
        <property name="minIdle" value="5"></property>
   </bean>
   
   
   <bean class="org.mybatis.spring.SqlSessionFactoryBean">
       <property name="dataSource" ref="dataSource"></property>
       <property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml"></property>
   </bean>
   
   <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.itqf.mapper"></property>
   </bean>

</beans>  
複製程式碼

applicationContext-service.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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.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-4.2.xsd">
    
    <context:component-scan base-package="com.itqf.service"></context:component-scan>   
</beans>

複製程式碼

pom.xml

<project xmlns="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>
  <parent>
    <groupId>com.qianfeng</groupId>
    <artifactId>sping-manager</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>sping-manager-service</artifactId>
  
  <packaging>war</packaging>
  
  
  <dependencies>
       <dependency>
           <groupId>com.qianfeng</groupId>
           <artifactId>sping-manager-interface</artifactId>
           <version>0.0.1-SNAPSHOT</version>
       </dependency>
       
       <dependency>
           <groupId>com.qianfeng</groupId>
           <artifactId>sping-manager-mapper</artifactId>
           <version>0.0.1-SNAPSHOT</version>
       </dependency>
     
       <!-- 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>
	     
  </dependencies>
</project>

複製程式碼

最後工程結構

java實現分散式專案搭建


3 使用dubbo將service釋出服務

首先思考?
像淘寶京東這樣的商城類網站,不但可以從PC端登入,還能從手機端登入,那麼是怎麼實現的?寫兩個controller?那肯定不會,誰會閒著沒事去找事情做,那麼這就需要使用到SOA(面向服務的架構).那麼我們在寫一個專案使用分散式的時候,會有很多系統來相互呼叫,如果來回撥用會使程式碼結構非常混亂.這裡我們使用dubbo來管理,解決釋出服務太多,搞不清楚的問題.


什麼是SOA

SOA是一種設計方法,其中包含多個服務,而服務之間通過配合最終會提供一系列功能。一個服務通常以獨立的形式存在於作業系統程式中。服務之間通過網路呼叫,而非採用程式內呼叫的方式進行通訊。
比如你現在有很多服務:新聞服務(提供新聞的釋出,檢視,修改,刪除),訂單服務(訂單新增,訂單修改,訂單檢視,訂單刪除等)財務服務(收入,支出,統計等等)員工服務(新增,修改,檢視,統計)考勤服務(簽到,簽退,匯出,統計等)銷售服務(賣出上報,銷售統計。)

SOA的優缺點

參考:SOA的好處,壞處以及尷尬之處


dubbo

什麼是dubbo(是資源排程和治理中心的管理工具)
隨著網際網路的發展,網站應用的規模不斷擴大,常規的垂直應用架構已無法應對,分散式服務架構以及流動計算架構勢在必行,亟需一個治理系統確保架構有條不紊的演進。

java實現分散式專案搭建

  • 單一應用架構
    • 當網站流量很小時,只需一個應用,將所有功能都部署在一起,以減少部署節點和成本。
    • 此時,用於簡化增刪改查工作量的 資料訪問框架(ORM) 是關鍵。
  • 垂直應用架構
    • 當訪問量逐漸增大,單一應用增加機器帶來的加速度越來越小,將應用拆成互不相干的幾個應用,以提升效率。
    • 此時,用於加速前端頁面開發的 Web框架(MVC) 是關鍵。
  • 分散式服務架構
    • 當垂直應用越來越多,應用之間互動不可避免,將核心業務抽取出來,作為獨立的服務,逐漸形成穩定的服務中心,使前端應用能更快速的響應多變的市場需求。
    • 此時,用於提高業務複用及整合的 分散式服務框架(RPC) 是關鍵。
  • 流動計算架構
    • 當服務越來越多,容量的評估,小服務資源的浪費等問題逐漸顯現,此時需增加一個排程中心基於訪問壓力實時管理叢集容量,提高叢集利用率。
    • 此時,用於提高機器利用率的 資源排程和治理中心(SOA) 是關鍵。 Dubbo環境的搭建:

java實現分散式專案搭建
節點角色說明:

  • Provider: 暴露服務的服務提供方。
  • Consumer: 呼叫遠端服務的服務消費方。
  • Registry: 服務註冊與發現的註冊中心。
  • Monitor: 統計服務的呼叫次數和呼叫時間的監控中心。
  • Container: 服務執行容器。

呼叫關係說明:

  1. 服務容器負責啟動,載入,執行服務提供者。
  2. 服務提供者在啟動時,向註冊中心註冊自己提供的服務。
  3. 服務消費者在啟動時,向註冊中心訂閱自己所需的服務。
  4. 註冊中心返回服務提供者地址列表給消費者,如果有變更,註冊中心將基於長連線推送變更資料給消費者。
  5. 服務消費者,從提供者地址列表中,基於軟負載均衡演算法,選一臺提供者進行呼叫,如果呼叫失敗,再選另一臺呼叫。
  6. 服務消費者和提供者,在記憶體中累計呼叫次數和呼叫時間,定時每分鐘傳送一次統計資料到監控中心。

這裡我們主要來部註冊中心(Registry),我們使用Zookeeper來充當註冊中心.

在linux環境下部署註冊中心,Zookeeper

  1. 第一步當然是開虛擬機器啦,我還是在CentOS7中來搞.
  2. 上網上搞一個Zookeeper的壓縮包,我的是zookeeper-3.4.6.tar.gz
  3. 貼上到/opt目錄下,解壓.(需要jdk環境,如果沒有jdk環境先安裝一個jdk)
  4. 進入zookeeper-3.4.6目錄,建立一個叫data的資料夾。
  5. 把./conf目錄下的zoo_sample.cfg改名為zoo.cfg
  6. 修改zoo.cfg中的data屬性:dataDir=/opt/zookeeper-3.4.6/data
  7. 第七步:啟動zookeeper.
    • 啟動:./zkServer.sh start
    • 關閉:./zkServer.sh stop
    • 檢視狀態:./zkServer.sh status

注意zookeeper啟動後一定要將防火牆關閉!!!這樣就搞定啦.

在service的applicationContext-service.xml中新增配置檔案進行釋出服務

<!-- 使用dubbo釋出服務 -->  
    <!-- 指明服務所在的工程 -->  
    <dubbo:application name="sping-manager"/>
    
    <!-- 指明註冊中心 adress地址是linux中的ip地址加上埠號,zookeeper的預設埠號是2181 -->
    <dubbo:registry protocol="zookeeper" address="10.0.117.198:2181" ></dubbo:registry>
        
    <!-- 把服務暴露在某個埠 port是埠號,選擇一個沒有被佔用的埠 -->  
    <dubbo:protocol name="dubbo" port="20888"></dubbo:protocol>  
    
    <!-- 釋出服務,ref是Spring容器建立的Service物件的名稱 -->    			 
    <dubbo:service interface="com.itqf.service.ItemService" ref="itemServiceImpl" timeout="6000000"></dubbo:service>
複製程式碼

在service的pom.xml中匯入包

  <!-- dubbo相關 -->
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>dubbo</artifactId>
			<!-- 排除依賴 -->
			<exclusions>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.jboss.netty</groupId>
					<artifactId>netty</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.zookeeper</groupId>
			<artifactId>zookeeper</artifactId>
		</dependency>
		<dependency>
			<groupId>com.github.sgroschupf</groupId>
			<artifactId>zkclient</artifactId>
		</dependency>
複製程式碼

4 建立一個sping-manager-controller,與聚合專案平級.匯入依賴.

contoller需要使用dubbo來訪問service層釋出的服務.要使用Tomcat伺服器進行釋出,當然還需要用到springmvc.
xml

  <dependencies>
      <!-- 只需依賴業務的介面 -->
      <dependency>
          <groupId>com.qianfeng</groupId>
          <artifactId>sping-manager-interface</artifactId>
          <version>0.0.1-SNAPSHOT</version>
      </dependency>
      
      <!-- 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>
      
      <!-- JSP相關 -->
			<dependency>
				<groupId>jstl</groupId>
				<artifactId>jstl</artifactId>
				
			</dependency>
			<dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>servlet-api</artifactId>
				
				<scope>provided</scope>
			</dependency>
			<dependency>
				<groupId>javax.servlet</groupId>
				<artifactId>jsp-api</artifactId>
				<scope>provided</scope>
			</dependency>
			
		<!-- dubbo相關 -->
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>dubbo</artifactId>
			<!-- 排除依賴 -->
			<exclusions>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.jboss.netty</groupId>
					<artifactId>netty</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.zookeeper</groupId>
			<artifactId>zookeeper</artifactId>
		</dependency>
		<dependency>
			<groupId>com.github.sgroschupf</groupId>
			<artifactId>zkclient</artifactId>
		</dependency>
     
  </dependencies>
  
  <build>
		<plugins>
			<plugin>
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
				<configuration>
					<port>8081</port>
					<path>/</path>
				</configuration>
			</plugin>
		</plugins>
 </build>
複製程式碼

spingmvc.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:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:aop="http://www.springframework.org/schema/aop"
	xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	    http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-4.2.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-4.2.xsd">
      
      <context:component-scan base-package="com.itqf.controller"></context:component-scan>
      
      <mvc:annotation-driven></mvc:annotation-driven>
      
      <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
           <property name="prefix" value="/WEB-INF/jsp/"></property>
           <property name="suffix" value=".jsp"></property>
      </bean>
      
      <!--指明所在工程 -->
      <dubbo:application name="sping-manager-controller"/>
      
      <!-- 指明註冊中心 -->
      <dubbo:registry protocol="zookeeper" address="10.0.117.198:2181"></dubbo:registry>
      
      <!--呼叫服務  -->
      <dubbo:reference interface="com.itqf.service.ItemService" id="itemService"></dubbo:reference>
        
</beans>
複製程式碼

結構圖:

java實現分散式專案搭建

5 建立sping-common

這個是我需要用到的一個專門放工具的地方,這裡用來放一些公共需要的東西; pom.xml

<project xmlns="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>
  <parent>
    <groupId>com.itqf</groupId>
    <artifactId>sping-parent</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <groupId>com.itqf</groupId>
  <artifactId>sping-common</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
  <dependencies>
			<!-- 時間操作元件 -->
			<dependency>
				<groupId>joda-time</groupId>
				<artifactId>joda-time</artifactId>
				<version>${joda-time.version}</version>
			</dependency>
			<!-- Apache工具元件 -->
			<dependency>
				<groupId>org.apache.commons</groupId>
				<artifactId>commons-lang3</artifactId>
				<version>${commons-lang3.version}</version>
			</dependency>
			<dependency>
				<groupId>org.apache.commons</groupId>
				<artifactId>commons-io</artifactId>
				<version>${commons-io.version}</version>
			</dependency>
			<dependency>
				<groupId>commons-net</groupId>
				<artifactId>commons-net</artifactId>
				<version>${commons-net.version}</version>
			</dependency>
			<!-- Jackson Json處理工具包 -->
			<dependency>
				<groupId>com.fasterxml.jackson.core</groupId>
				<artifactId>jackson-databind</artifactId>
				<version>${jackson.version}</version>
			</dependency>
	</dependencies>
  
</project>
複製程式碼

6 測試

好啦,這樣一個偽分散式專案就搭建好了,接下來非常重要的一點就是需要將父工程,sping-manager的聚合工程,sping-common都install一下放到本地倉庫中,否則的話在啟動專案的時候會報錯說找不到父工程或其他工程.
最終工程圖:

java實現分散式專案搭建

總結:

經過幾個小時的艱苦奮戰終於搭建好了,都要給我的老人機累炸了.如果有什麼錯誤或不足之處請不吝之處.

相關文章