项目构造如下:

system-parent

|----pom.xml

maven多modules相互引用jspMaven进修总结–应用Maven构建多模块项目 Docker

|----system-domain

|----pom.xml

|----system-dao

|----pom.xml

|----system-service

|----pom.xml

|----system-web

|----pom.xml

一、创建system-parent项目

创建system-parent,用来给各个子模块继续。

进入命令行,输入以下命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=system-parent -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

如下图所示:

命令实行完成之后可以看到在当前目录(C:Documents and SettingsAdministrator)天生了system-parent目录,里面有一个src目录和一个pom.xml文件,如下图所示:

将src文件夹删除,然后修正pom.xml文件,将&lt;packaging&gt;jar</packaging>修正为<packaging>pom</packaging>,pom表示它是一个被继续的模块,修正后的内容如下:

<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>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>system-parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies></project>二、创建sytem-domain模块

在命令行进入创建好的system-parent目录,然后实行下列命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=system-domain -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

如下图所示:

命令实行完成之后可以看到在system-parent目录中天生了system-domain,里面包含src目录和pom.xml文件。
如下图所示:

同时,在system-parent目录中的pom.xml文件自动添加了如下内容:

<modules> <module>system-domain</module></modules>

这时,system-parent的pom.xml文件如下:

<?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>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>system-parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>system-domain</module> </modules></project>

修正system-domain目录中的pom.xml文件,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,由于groupId和version会继续system-parent中的groupId和version,packaging设置打包办法为jar,修正过后的pom.xml文件如下:

<?xml version=\"大众1.0\公众?><project xsi:schemaLocation=\公众http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\公众 xmlns=\"大众http://maven.apache.org/POM/4.0.0\"大众 xmlns:xsi=\公众http://www.w3.org/2001/XMLSchema-instance\"大众> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>system-domain</artifactId> <packaging>jar</packaging> <name>system-domain</name> <url>http://maven.apache.org</url></project>三、创建sytem-dao模块

在命令行进入创建好的system-parent目录,然后实行下列命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=system-dao -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

如下图所示: 

命令实行完成之后可以看到在system-parent目录中天生了system-dao,里面包含src目录和pom.xml文件。
如下图所示:

同时,在system-parent目录中的pom.xml文件自动变成如下内容:

<?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>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>system-parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>system-domain</module> <module>system-dao</module> </modules></project>

修正system-dao目录中的pom.xml文件,,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,由于groupId和version会继续system-parent中的groupId和version,packaging设置打包办法为jar,同时添加对system-domain模块的依赖,修正后的内容如下:

<?xml version=\公众1.0\公众?><project xsi:schemaLocation=\公众http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"大众 xmlns=\"大众http://maven.apache.org/POM/4.0.0\公众 xmlns:xsi=\"大众http://www.w3.org/2001/XMLSchema-instance\"大众> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>system-dao</artifactId> <packaging>jar</packaging> <name>system-dao</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!--system-dao须要利用到system-domain中的类,以是须要添加对system-domain模块的依赖--> <dependency> <groupId>me.gacl</groupId> <artifactId>system-domain</artifactId> <version>${project.version}</version> </dependency> </dependencies></project>四、创建system-service模块

在命令行进入创建好的system-parent目录,然后实行下列命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=system-service -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

如下图所示:

命令实行完成之后可以看到在system-parent目录中天生了system-service,里面包含src目录和pom.xml文件。
如下图所示:

同时,在system-parent目录中的pom.xml文件自动变成如下内容:

<?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>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>system-parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>system-domain</module> <module>system-dao</module> <module>system-service</module> </modules></project>

修正system-service目录中的pom.xml文件,,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,加上<packaging>jar</packaging>,由于groupId和version会继续system-parent中的groupId和version,packaging设置打包办法为jar,同时添加对system-dao模块的依赖,system-service依赖system-dao和system-domain,但是我们只需添加system-dao的依赖即可,由于system-dao已经依赖了system-domain。
修正后的内容如下:

<?xml version=\"大众1.0\"大众?><project xsi:schemaLocation=\公众http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"大众 xmlns=\"大众http://maven.apache.org/POM/4.0.0\公众 xmlns:xsi=\"大众http://www.w3.org/2001/XMLSchema-instance\"大众> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>system-service</artifactId> <packaging>jar</packaging> <name>system-service</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- system-service依赖system-dao和system-domain, 但是我们只需添加system-dao的依赖即可,由于system-dao已经依赖了system-domain --> <dependency> <groupId>me.gacl</groupId> <artifactId>system-dao</artifactId> <version>${project.version}</version> </dependency> </dependencies></project>五、创建system-web模块

在命令行进入创建好的system-parent目录,然后实行下列命令:

mvn archetype:create -DgroupId=me.gacl -DartifactId=system-web -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false

如下图所示: 

命令实行完成之后可以看到在system-parent目录中天生了system-web,里面包含src目录和pom.xml文件。
如下图所示:

在system-websrcmainwebapp目录中还天生了一个大略的index.jsp,如下图所示:

里面的内容为

<html><body><h2>Hello World!</h2></body></html>

system-websrcmainwebappWEB-INF目录中天生了web.xml

同时,在system-parent目录中的pom.xml文件自动变成如下内容:

<?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>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>system-parent</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <modules> <module>system-domain</module> <module>system-dao</module> <module>system-service</module> <module>system-web</module> </modules></project>

修正system-web目录中的pom.xml文件,,把<groupId>me.gacl</groupId>和<version>1.0-SNAPSHOT</version>去掉,由于groupId和version会继续system-parent中的groupId和version,同时添加对system-service模块的依赖,修正后的内容如下:

<?xml version=\"大众1.0\"大众?><project xsi:schemaLocation=\公众http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"大众 xmlns=\"大众http://maven.apache.org/POM/4.0.0\"大众 xmlns:xsi=\"大众http://www.w3.org/2001/XMLSchema-instance\公众> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>system-web</artifactId> <packaging>war</packaging> <name>system-web Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <!-- system-web依赖system-service --> <dependency> <groupId>me.gacl</groupId> <artifactId>system-service</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <finalName>system-web</finalName> </build></project>

把稳,web项目的打包办法是war。

六、编译运行项目

经由上面的五个步骤,干系的模块全部创建完成,怎么运行起来呢。
由于终极运行的是system-web模块,以是我们对该模块添加jetty支持,方便测试运行。
修正system-web项目的pom.xml如下:

<?xml version=\公众1.0\公众?><project xsi:schemaLocation=\"大众http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\"大众 xmlns=\公众http://maven.apache.org/POM/4.0.0\"大众 xmlns:xsi=\"大众http://www.w3.org/2001/XMLSchema-instance\"大众> <modelVersion>4.0.0</modelVersion> <parent> <groupId>me.gacl</groupId> <artifactId>system-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <artifactId>system-web</artifactId> <packaging>war</packaging> <name>system-web Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <!-- system-web依赖system-service --> <dependency> <groupId>me.gacl</groupId> <artifactId>system-service</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <finalName>system-web</finalName> <plugins> <!--配置Jetty插件--> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> </plugin> </plugins> </build></project>

在命令行进入system-parent目录,然后实行下列命令:

mvn clean install

如下图所示:

命令实行完后,在system-web目录下多出了target目录,里面有了system-web.war,如下图所示:

命令行进入sytem-web目录,实行如下命令,启动jetty

mvn jetty:run

如下图所示:

启动jetty做事器后,访问http://localhost:8080/system-web/ 运行结果如下图所示:

七、导入Eclipse中进行开拓

操作步骤如下所示: