功能分析 2.1. 後台系統所用的技術
架構:Spring + SpringMVC + Mybatis+dubbo
前端:EasyUI
資料庫:mysql 2.2. 建立資料庫
1、安裝mysql資料庫
2、在mysql中建立一個taotao資料庫
3、匯入資料庫指令碼。 2.3. 系統間通訊
由於淘淘商城是基於soa的架構,表現層和服務層是不同的工程。所以要實現商品列表查詢需要兩個系統之間進行通訊。
如何?遠程通訊。
1、使用WebService:效率不高,它是基於soap協議(http+xml)。項目中不推薦使用。
2、使用restful形式的服務:http+json。很多項目中應用。如果服務越來越多,服務與服務之間的調用關係複雜,管理複雜。
3、使用dubbo。使用rpc協議進行遠程調用,直接使用socket通訊。傳輸效率高,並且可以統計出系統之間的調用關係、調用次數。 3. Dubbo 3.1. 什麼是dubbo
dubbo.io
DUBBO是一個分布式服務架構,致力於提供高效能和透明化的RPC遠程服務調用方案,是阿里巴巴SOA服務化治理方案的核心架構,每天為2,000+個服務提供3,000,000,000+次訪問量支援,並被廣泛應用於阿里巴巴集團的各成員網站
隨著互連網的發展,網站應用程式的規模不斷擴大,常規的垂直應用架構已無法應對,分布式服務架構以及流動計算架構勢在必行,亟需一個治理系統確保架構有條不紊的演化。
單一應用架構
當網站流量很小時,只需一個應用,將所有功能都部署在一起,以減少部署節點和成本。
此時,用於簡化增刪改查工作量的 資料訪問架構(ORM) 是關鍵。
垂直應用架構
當訪問量逐漸增大,單一應用增加機器帶來的加速度越來越小,將應用拆成互不相干的幾個應用,以提升效率。
此時,用於加速前端頁面開發的 Web架構(MVC) 是關鍵。
· 分布式服務架構
當垂直應用越來越多,應用之間互動不可避免,將核心業務抽取出來,作為獨立的服務,逐漸形成穩定的服務中心,使前端應用能更快速的響應多變的市場需求。
此時,用於提高業務複用及整合的 分布式服務架構(RPC) 是關鍵。
· 流動計算架構
當服務越來越多,容量的評估,小服務資源的浪費等問題逐漸顯現,此時需增加一個調度中心基於訪問壓力即時管理叢集容量,提高叢集利用率。
此時,用於提高機器利用率的 資源調度和治理中心(SOA) 是關鍵。
Dubbo就是資源調度和治理中心的管理工具。
Dubbo 就是類似於webservice的關於系統之間通訊的架構,並可以統計和管理服務直接的調用情況(包括服務被誰調用了,調用的次數是如何,以及服務的使用狀況)。
3.2. Dubbo的架構
節點角色說明:
Provider: 暴露服務的服務提供者。
Consumer: 調用遠程服務的服務消費方。
Registry: 服務註冊與發現的註冊中心。
Monitor: 統計服務的調用次調和調用時間的監控中心。
Container: 服務運行容器。
調用關係說明:
0. 服務容器負責啟動,載入,運行服務提供者。
1. 服務提供者在啟動時,向註冊中心註冊自己提供的服務。
2. 服務消費者在啟動時,向註冊中心訂閱自己所需的服務。
3. 註冊中心返回服務提供者地址清單給消費者,如果有變更,註冊中心將基於長串連推送變更資料給消費者。
4. 服務消費者,從提供者地址清單中,基於軟負載平衡演算法,選一台提供者進行調用,如果調用失敗,再選另一台調用。
5. 服務消費者和提供者,在記憶體中累計調用次數和調用時間,定時每分鐘發送一次統計資料到監控中心。 3.3. 使用方法 3.3.1. Spring配置
Dubbo採用全Spring配置方式,透明化接入應用,對應用沒有任何API侵入,只需用Spring載入Dubbo的配置即可,Dubbo基於Spring的Schema擴充進行載入。
單一工程中spring的配置local.xml
<bean id="xxxService" class="com.xxx.XxxServiceImpl" /> <bean id="xxxAction" class="com.xxx.XxxAction"> <property name="xxxService" ref="xxxService" /> </bean> |
遠程服務:
在本地服務的基礎上,只需做簡單配置,即可完成遠程化:
將上面的local.xml配置拆分成兩份,將服務定義部分放在服務提供者remote-provider.xml,將服務引用部分放在服務消費方remote-consumer.xml。
並在提供方增加暴露服務配置<dubbo:service>,在消費方增加引用服務配置<dubbo:reference>。
服務層發布服務:
<!-- 和本地服務一樣實現遠程服務 --> <bean id="xxxService" class="com.xxx.XxxServiceImpl" /> <!-- 增加暴露遠程服務配置 --> <dubbo:service interface="com.xxx.XxxService" ref="xxxService" /> |
表現層調用服務:
<!-- 增加引用遠程服務配置 --> <dubbo:reference id="xxxService" interface="com.xxx.XxxService" /> <!-- 和本地服務一樣使用遠程服務 --> <bean id="xxxAction" class="com.xxx.XxxAction"> <property name="xxxService" ref="xxxService" /> </bean> |
3.4. 註冊中心 3.4.1. zookeeper的介紹
註冊中心負責服務地址的註冊與尋找,相當於目錄服務,服務提供者和消費者只在啟動時與註冊中心互動,註冊中心不轉寄請求,壓力較小。使用dubbo-2.3.3以上版本,建議使用zookeeper註冊中心。
Zookeeper是Apacahe Hadoop的子項目,是一個樹型的目錄服務,支援變更推送,適合作為Dubbo服務的註冊中心,工業強度較高,可用於生產環境,並推薦使用。
3.4.2. 使用XShell串連Linux系統
遠程工具的安裝請參考文檔:
串連linux時可能會串連不上,先要關閉防火牆:
使用:
serivce 命令:只是作用於當前,系統一旦重啟就失效。
可以通過命令:
chkconfig iptables off 永久關閉。
3.4.3. Zookeeper的安裝:
第一步:安裝jdk
第二步:解壓縮zookeeper壓縮包
第三步:將conf檔案夾下zoo_sample.cfg複製一份,改名為zoo.cfg
第四步:修改配置dataDir屬性,指定一個真實目錄
第五步:
啟動zookeeper:bin/zkServer.sh start
關閉zookeeper:bin/zkServer.sh stop
查看zookeeper狀態:bin/zkServer.sh status
注意關閉防火牆。 4. 架構整合 4.1. 添加dubbo的依賴
加入dubbo相關的jar包。服務層、表現層都添加。
<!-- 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.2. 整合思路
1、Dao層:
mybatis整合spring,通過spring管理SqlSessionFactory、mapper代理對象。需要mybatis和spring的整合包,由spring建立資料庫連接池。
整合內容 |
對應工程 |
Pojo |
Taotao-mangaer-pojo |
Mapper對應檔 |
Taotao-mangaer-dao |
Mapper介面 |
Taotao-mangaer-dao |
SqlmapConfig.xml(全域配置) |
Taotao-manager-service |
applicationContext-dao.xml(資料庫連接池) |
Taotao-manager-service |
2、Service層:
所有的實作類別都放到spring容器中管理。並有spring管理事務;發布dubbo服務
整合內容 |
對應工程 |
Service介面 |
Taotao-mangaer-interface |
Service實作類別 |
Taotao-mangaer-service |
applicationContext-service.xml |
Taotao-manager-service |
applicationContext-trans.xml |
Taotao-manager-service |
web.xml 配置:配置載入spring容器
3、表現層:
Springmvc整合spring架構,由springmvc管理controller;引入服務
整合內容 |
對應工程 |
springmvc.xml |
Taotao-manager-web |
Controller |
Taotao-manager-web |
web.xml 的配置:前端控制器,配置URL攔截形式。
4.3. Dao整合 4.3.1. 建立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> |
4.3.2. Spring整合mybatis
建立applicationContext-dao.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-4.2.xsd"> <!-- 資料庫連接池 --> <!-- 載入設定檔 --> <context:property-placeholder location="classpath:properties/*.properties" /> <!-- 資料庫連接池 --> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close"> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> <property name="driverClassName" value="${jdbc.driver}" /> <property name="maxActive" value="10" /> <property name="minIdle" value="5" /> </bean> <!-- 讓spring管理sqlsessionfactory 使用mybatis和spring整合包中的 --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 資料庫連接池 --> <property name="dataSource" ref="dataSource" /> <!-- 載入mybatis的全域設定檔 --> <property name="configLocation" value="classpath:mybatis/Sql |