中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

工作中一直都是一個(gè)人奮戰(zhàn)一人一個(gè)項(xiàng)目,使用maven管理,看這個(gè)也挺好,但是總感覺(jué)沒(méi)有充分發(fā)揮maven的功能,于是研究了一下這個(gè),網(wǎng)上關(guān)于這個(gè)的文章很多,雖然不是很好,但我從中收獲了很多,在這集百家所長(zhǎng),寫一份實(shí)戰(zhàn)記錄,大家跟著我一塊做吧!

創(chuàng)新互聯(lián)公司是專業(yè)的安定網(wǎng)站建設(shè)公司,安定接單;提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行安定網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!

聲明:構(gòu)建多模塊不是最難的,難點(diǎn)是如果把多模塊打包成一個(gè)執(zhí)行jar。

SpringBoot官方推崇的是富jar,也就是jar文件啟動(dòng)項(xiàng)目,所以如果在這里打war包我不具體介紹,如果需要的朋友可以給我留言,我回復(fù)。

建議clone項(xiàng)目后,在看教程(有不足的地方希望大家保函,指出來(lái),我們一起學(xué)習(xí)改進(jìn))

github:https://github.com/lxchinesszz/multi-boluome.git

構(gòu)建工程

1.首先第一步,在github上創(chuàng)建一個(gè)公共項(xiàng)目項(xiàng)目名 multi-boluome

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

2.把倉(cāng)庫(kù)同步到本地,使用Intellij idea打開(kāi),把普通項(xiàng)目轉(zhuǎn)換為maven項(xiàng)目【右鍵:Add Frameworks Support】

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

3.刪除除了pom文件之外的文件也就是src刪除

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

4.然后新建File->New->module以此創(chuàng)建(此時(shí)會(huì)看到pom文件的變化)

  • web
  • dao
  • domain
  • service

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

==提示:一定要把外面的pom文件中的pom==

5.引入SpringBoot依賴 這個(gè)我在外面寫的(這個(gè)根據(jù)個(gè)人)

外面的pom文件內(nèi)容

  <?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">

  <modelVersion>4.0.0</modelVersion>
  <groupId>blm.server</groupId>
  <artifactId>multi-boluome</artifactId>
  <packaging>pom</packaging>
  <version>1.0-SNAPSHOT</version>

  <modules>
    <module>web</module>
    <module>service</module>
    <module>dao</module>
    <module>domain</module>
  </modules>

  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.3.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
    <kotlin.version>1.0.6</kotlin.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-aop</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-MongoDB</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-freemarker</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
    </dependency>
    <!--引入mock框架-->
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.10.19</version>
    </dependency>
    <!--rabbitmq-->
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-amqp</artifactId>
    </dependency>

    <dependency>
      <groupId>com.google.code.gson</groupId>
      <artifactId>gson</artifactId>
      <version>2.2.4</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <!-- The plugin rewrites your manifest -->
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>1.3.0.RELEASE</version>
        <configuration><!-- 指定該Main Class為全局的唯一入口 -->
          <mainClass>iflyer.IflyerApplication</mainClass>
          <layout>ZIP</layout>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>repackage</goal><!--可以把依賴的包都打包到生成的Jar包中-->
            </goals>
            <!--可以生成不含依賴包的不可執(zhí)行Jar包-->
            <!-- configuration>
             <classifier>exec</classifier>
            </configuration> -->
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>

6.開(kāi)始編寫domain層(這里我用mongodb數(shù)據(jù)庫(kù))

7.dao層我要用到數(shù)據(jù)庫(kù),所以在resource中添加配置信息

8.service層中我有用到freemarker的模板引擎,所以添加配置信息

9.web層編寫啟動(dòng)類,main方法,main方法要放到目錄外層,根據(jù)約定哦!

10.每個(gè)層及都有自己的依賴

eg:

  • dao層依賴domain
  • service依賴dao和domain
  • web層依賴service、dao、domain

這個(gè)關(guān)系層次一定要告訴,編輯器,如下設(shè)置

右鍵:Open Module Settings打開(kāi)

idea修改依賴

SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼

11.run一下啟動(dòng)類吧!工程可以啟動(dòng)了

如果出現(xiàn)一下錯(cuò)誤

Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules

說(shuō)明依賴關(guān)系錯(cuò)了,繼續(xù)看第10步驟吧。

打包發(fā)布jar文件

1.在啟動(dòng)類中修改pom文件(也就是web層的)

<build>
  <!-- 為jar包取名 -->
  <finalName>blm-start</finalName>
  <plugins>
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <version>1.3.0.RELEASE</version>
    </plugin>
  </plugins>
</build>

2.在外層pom中構(gòu)建插件

<build>
  <plugins>
    <plugin>
      <!-- The plugin rewrites your manifest -->
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <version>1.3.0.RELEASE</version>
      <configuration><!-- 指定該Main Class為全局的唯一入口 -->
        <mainClass>com.Application</mainClass>
        <layout>ZIP</layout>
      </configuration>
      <executions>
        <execution>
          <goals>
            <goal>repackage</goal><!--可以把依賴的包都打包到生成的Jar包中-->
          </goals>
          <!--可以生成不含依賴包的不可執(zhí)行Jar包-->
          <!-- configuration>
           <classifier>exec</classifier>
          </configuration> -->
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

3.打包吧,mvn package —Dmaven.test.skip=true 跳過(guò)測(cè)試

[INFO] multi-boluome ...................................... SUCCESS [ 1.707 s]
[INFO] domain ............................................. SUCCESS [ 2.463 s]
[INFO] dao ................................................ SUCCESS [ 0.592 s]
[INFO] service ............................................ SUCCESS [ 0.606 s]
[INFO] web ................................................ SUCCESS [ 1.135 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 7.290 s
[INFO] Finished at: 2017-01-20T17:05:14+08:00
[INFO] Final Memory: 42M/265M
[INFO] ------------------------------------------------------------------------
KK-MINI:multi-boluome liuxin$ 

INFO] Building jar: /Users/liuxin/git/模仿項(xiàng)目/multi-boluome/web/target/blm-start.jar
構(gòu)建文件在這個(gè)目錄下

very Good!開(kāi)始飛吧

==提醒:所有模塊里面的父節(jié)點(diǎn)都是一樣的哦,不然會(huì)報(bào)錯(cuò) unknow.version==

WARNING] ‘parent.relativePath' of POM blm.server:domain:[unknown-version] 類似

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)頁(yè)題目:SpringBoot創(chuàng)建maven多模塊項(xiàng)目實(shí)戰(zhàn)代碼
網(wǎng)頁(yè)路徑:http://www.rwnh.cn/article28/gopgcp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動(dòng)態(tài)網(wǎng)站、網(wǎng)站建設(shè)、、小程序開(kāi)發(fā)、全網(wǎng)營(yíng)銷推廣微信公眾號(hào)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
东港市| 永顺县| 赤峰市| 丹棱县| 大石桥市| 巨鹿县| 神木县| 玛纳斯县| 满洲里市| 大关县| 石河子市| 阿鲁科尔沁旗| 深圳市| 华阴市| 察雅县| 清镇市| 山东省| 台北县| 罗定市| 西贡区| 湟源县| 兰考县| 察哈| 尼玛县| 乐昌市| 延边| 竹溪县| 兰西县| 潜山县| 富川| 峨眉山市| 星座| 浮梁县| 方正县| 泰兴市| 宁强县| 崇左市| 杭锦旗| 莱西市| 梨树县| 随州市|