一:分佈式微服務之路:搭建分佈式微服務項目架構(聚合工程搭建)

項目架構簡介
準備:idea,maven,redis,activemq,mysql
介紹:集成了SpringBoot+SpringCloud +Maven+Redis+ActiveMQ+XXLJOB(分佈式任務調度)+ thymeleaf等
在這裏插入圖片描述
層級關係:
Jerryshop
Jerry-api:對外接口
…-menber-api
…以下省略(與相應的服務形成依賴)
Jerry-eurka:註冊中心
…-menber:會員服務
…-message:消息服務
…-order:訂單服務
…以下省略

(注:Jerryshop和Jerry-api下的src可刪除,以及具體依賴包自行查找相關資料)

舉例:…-menber-api與…-menber依賴關係
…-menber-api

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>Jerry-api</artifactId>
        <groupId>Jerry-shop</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>Jerry-shop</groupId>
    <artifactId>Jerry-member-api</artifactId>
</project>

…-menber

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>Jerry-shop</artifactId>
        <groupId>Jerry-shop</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>Jerry-shop</groupId>
    <artifactId>Jerry-member</artifactId>
    <dependencies>
        <!--建立依賴關係-->
        <dependency>
            <artifactId>Jerry-member-api</artifactId>
            <groupId>Jerry-shop</groupId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
    </dependencies>
</project>

啓動eurka相關報錯

***************************
APPLICATION FAILED TO START
***************************

Description:

Field applicationInfoManager in org.springframework.cloud.netflix.eureka.server.EurekaServerAutoConfiguration required a bean of type 'com.netflix.appinfo.ApplicationInfoManager' that could not be found.


Action:

Consider defining a bean of type 'com.netflix.appinfo.ApplicationInfoManager' in your configuration.

主要原因是在Jerryshop pom工程下添加如下依賴:

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Dalston.RC1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

啓動後登入如下地址,http://127.0.0.1:9000

在這裏插入圖片描述eurka成功配置並啓動

創建項目步驟,看這篇博客,不在詳細闡述:
https://blog.csdn.net/eson_15/article/details/83585344

源碼下載(後期會慢慢更新):
https://github.com/JerryBGM/Jerry-Shop1.1.1

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章