springcloud修改父和子pom檔案,實現統一管理
接著我上篇文章說:SpringCloud多模組開發
看過這篇文章的會發現我沒有去修改pom檔案,一個專案一個pom檔案,那麼我建立父目錄就沒有意義了。
看我這個pom是如此的簡陋。在看看子pom
那麼現在我要大刀闊斧的修改了。
修改父pom檔案
第一步:加入
<!--父工程一定要加-->
<name>toutiao_kuaishou_parent</name>
<packaging>pom</packaging>
<description>toutiao_kuaishou_parent</description>
第二步:引入子模組
<!--子模組工廠配置-->
<modules>
<module>ad_eureka_server</module>
<module>ad_toutiao_download</module>
<module>kuaishou_download</module>
</modules>
第三步:父元件引入子元件相應的包
<?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>ad.parent</groupId>
<artifactId>toutiao_kuaishou</artifactId>
<version>1.0-SNAPSHOT</version>
<!--父工程一定要加-->
<name>toutiao_kuaishou_parent</name>
<packaging>pom</packaging>
<description>toutiao_kuaishou_parent</description>
<!--子模組工廠配置-->
<modules>
<module>ad_eureka_server</module>
<module>ad_toutiao_download</module>
<module>kuaishou_download</module>
</modules>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR8</spring-cloud.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
第四步:子元件刪除相應的包,並引入父元件
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ad.eureka.server</groupId>
<artifactId>ad_eureka_server</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>ad_eureka_server</name>
<description>eureka server monitor</description>
<!--父工程的依賴-->
<parent>
<groupId>ad.parent</groupId>
<artifactId>toutiao_kuaishou</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<dependencies>
</dependencies>
</project>
其他2個子元件同理。
專案一訪問發現json變成了xml
這是由於spring-cloud-starter-netflix-eureka-server造成的,那就不把他放在公共父類上,讓他回到子專案裡
訪問好了
相關文章
- 自定義事件實現子傳父事件
- Idea 建立 父專案和子專案Idea
- springCloud 微服務通過minio實現檔案上傳和檔案下載介面SpringGCCloud微服務
- jquery實現的iframe子頁面和父頁面的相互操作jQuery
- vue父元件中修改子元件樣式Vue元件
- node實現檔案屬性批量修改(檔名)
- SSM框架pom配置檔案SSM框架
- 如何實現子元件向父元件傳值元件
- VUE父傳子,子傳父Vue
- fork、父程式和子程式
- vue2.0子元件修改父元件資料Vue元件
- Maven的pom檔案那些事Maven
- Linux檔案系統-目錄和檔案管理Linux
- iOS專案開發實戰——UIView的子檢視和父檢視iOSUIView
- 製造型企業 如何實現便捷的機臺檔案統一管理?
- 檔案管理,實現高效辦公
- vue裡面父元件如何修改子元件樣式Vue元件
- VUE父級使用子元件以插槽的形式,在父級修改內容任意向子級插入Vue元件
- Unix檔案系統和pwd命令實現詳解
- springcloud 建立子父專案_記錄springboot+springcloud+slf4j的未知名稱的問題GCCloudSpring Boot
- 查詢jar中的pom檔案JAR
- 原生js實現的iframe子頁面和父頁面相互操作程式碼JS
- python實現修改xml檔案內容詳解PythonXML
- 子元素scroll父元素容器不跟隨滾動JS實現JS
- 修改hosts檔案(windows和Ubuntu)WindowsUbuntu
- 檔案系統(四):FAT32檔案系統實現原理
- vue父元件和子元件傳值Vue元件
- 檔案上傳原理和實現
- 種子釋出和bt檔案分發系統
- Maven的pom.xml檔案詳解MavenXML
- Maven pom.xml檔案配置詳解MavenXML
- IDEA如何重新整理pom檔案Idea
- springcloud,新建父工程(聚合工程)初始化專案SpringGCCloud
- python實現圖書管理系統——通過excel檔案或者TXT檔案存放資料PythonExcel
- 檔案的基本管理和XFS檔案系統備份恢復
- git提示檔案有修改但實際檔案無修改解決方案Git
- 檔案和檔案系統
- node實現檔案屬性批量修改(時間屬性)