使用maven建立父子結構的分散式專案
阿新 • • 發佈:2019-01-27
一、新建一個普通maven project做為父專案
刪除掉所有檔案、資料夾和庫,只留下pom.xml
修改pom.xml檔案,把pacakage改成pom
<packaging>pom</packaging>
修改pom.xml檔案後,專案上有錯的話,可以試試右擊maven》update project。
二、新建maven module 開啟pom.xml的overview方式,點選create
三、第一次打包時要用父專案的pom.xml打包。多個子專案分開打包時一定要按依賴關係的順序打包。 四、maven開發分散式專案 ch-zdemo-dubbo-app打包成jar部署到應用伺服器, ch-zdemo-dubbo-web打包成war部署到web伺服器, ch-zdemo-dubbo-service公共業務層介面 ch-zdemo-dubbo-bean公共實體類包 ch-zdemo-dubbo-common其它公共類包 ch-zdemo-dubbo-core公共核心包 ch-zdemo-dubbo-mapper公共持久層介面包 ch-zdemo-dubbo-utils公共工具類包
其中ch-zdemo-dubbo-app需要打包成jar部署到應用伺服器,在app專案的pom.xml里加上使用打包外掛,把所有的依賴的jar都打包進來,配置如下:
配置完pom後,呼叫mvn clean install命令進行構建,構建成功後開啟工程target目錄,發現生成了2個jar包,一個為:original-XXX.jar,另一個為:XXX.jar,其中original.jar裡只包含了工程自己的class檔案,而另外的一個jar包則包含了工程本身以及所有依賴的jar包的class檔案。我們只需要使用第二個jar包就可以了。
二、新建maven module 開啟pom.xml的overview方式,點選create
三、第一次打包時要用父專案的pom.xml打包。多個子專案分開打包時一定要按依賴關係的順序打包。 四、maven開發分散式專案 ch-zdemo-dubbo-app打包成jar部署到應用伺服器, ch-zdemo-dubbo-web打包成war部署到web伺服器, ch-zdemo-dubbo-service公共業務層介面 ch-zdemo-dubbo-bean公共實體類包 ch-zdemo-dubbo-common其它公共類包 ch-zdemo-dubbo-core公共核心包 ch-zdemo-dubbo-mapper公共持久層介面包 ch-zdemo-dubbo-utils公共工具類包
其中ch-zdemo-dubbo-app需要打包成jar部署到應用伺服器,在app專案的pom.xml里加上使用打包外掛,把所有的依賴的jar都打包進來,配置如下:
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include><!-- 主要是mapper.xml檔案 --> </includes> </resource> <resource> <directory>src/main/resources</directory><!-- 配置檔案 --> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>1.7</source><!-- 原始碼使用的開發版本 --> <target>1.7</target><!-- 需要生成的目標class檔案的編譯版本 --> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.chhuang.application.App</mainClass><!-- 帶main方法的類 --> </transformer> <!-- 以新增的方式寫入spring.handlers和spring.schemas --> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/spring.handlers</resource> </transformer> <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>META-INF/spring.schemas</resource> </transformer> </transformers> <filters> <!-- 過濾掉多餘的.SF .DSA .RSA檔案 --> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> <finalName>ch-zdemo-dubbo-app</finalName> </build>
配置完pom後,呼叫mvn clean install命令進行構建,構建成功後開啟工程target目錄,發現生成了2個jar包,一個為:original-XXX.jar,另一個為:XXX.jar,其中original.jar裡只包含了工程自己的class檔案,而另外的一個jar包則包含了工程本身以及所有依賴的jar包的class檔案。我們只需要使用第二個jar包就可以了。