1. 程式人生 > >Springboot從入門到精通(二)

Springboot從入門到精通(二)

在前面的章節中我們已經搭建了一個父工程。在本節中,我們將繼續搭建專案所需的各個子工程。

我們在做web專案開發中不僅要考慮瀏覽器的訪問,還應要考慮到手機端的訪問。在這節中我們將搭建四個子工程。

cfcc-core 核心業務系統。

cfcc-browser 瀏覽器端服務

cfcc-app 手機端訪問服務

cfcc-demo 做測試用

1.依照前面的教程,搭建一個cfcc-core工程,繼承父工程



<parent>
        <groupId>com.cfcc</groupId>
        <artifactId>cfcc-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <relativePath>../cfcc-parent</relativePath>
    </parent>

2.搭建瀏覽器端工程,依賴核心業務模組,繼承父工程。



<dependencies>
        <dependency>
            <groupId>com.cfcc</groupId>
            <artifactId>cfcc-core</artifactId>
            <version>${cfcc.version}</version>
        </dependency>
    </dependencies>

3.搭建手機APP端服務工程,同樣依賴核心業務系統,繼承父工程。



4.搭建我們的demo工程用作測試,讓其繼承父工程依賴瀏覽器端工程。



<dependencies>
        <dependency>
            <groupId>com.cfcc</groupId>
            <artifactId>cfcc-browser</artifactId>
            <version>${cfcc.version}</version>
        </dependency>
    </dependencies>

最後在父工程中,將各個模組加入進來

<modules>
        <module>../cfcc-core</module>
        <module>../cfcc-app</module>
        <module>../cfcc-browser</module>
        <module>../cfcc-demo</module>
    </modules>