博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Maven构建多模块项目
阅读量:5050 次
发布时间:2019-06-12

本文共 12607 字,大约阅读时间需要 42 分钟。

  在平时的Javaweb项目开发中为了便于后期的维护,我们一般会进行分层开发,最常见的就是分为domain(域模型层)、dao(数据库访问层)、service(业务逻辑层)、web(表现层),这样分层之后,各个层之间的职责会比较明确,后期维护起来也相对比较容易,今天我们就是使用Maven来构建以上的各个层。

  项目结构如下:

  system-parent

        |----pom.xml
        |----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 Settings\Administrator)生成了system-parent目录,里面有一个src目录和一个pom.xml文件,如下图所示:

  

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

1 
3
4.0.0
4 5
me.gacl
6
system-parent
7
1.0-SNAPSHOT
8
pom
9 10
system-parent
11
http://maven.apache.org
12 13
14
UTF-8
15
16 17
18
19
junit
20
junit
21
3.8.1
22
test
23
24
25

二、创建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文件自动添加了如下内容:

system-domain

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

1 
2
3
4.0.0
4 5
me.gacl
6
system-parent
7
1.0-SNAPSHOT
8
pom
9 10
system-parent
11
http://maven.apache.org
12 13
14
UTF-8
15
16 17
18
19
junit
20
junit
21
3.8.1
22
test
23
24
25
26
system-domain
27
28

  修改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文件如下:

1 
2
4
4.0.0
5
6
me.gacl
7
system-parent
8
1.0-SNAPSHOT
9
10 11
system-domain
12
jar
13 14
system-domain
15
http://maven.apache.org
16

三、创建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文件自动变成如下内容:

1 
2
3
4.0.0
4 5
me.gacl
6
system-parent
7
1.0-SNAPSHOT
8
pom
9 10
system-parent
11
http://maven.apache.org
12 13
14
UTF-8
15
16 17
18
19
junit
20
junit
21
3.8.1
22
test
23
24
25
26
system-domain
27
system-dao
28
29

  修改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模块的依赖,修改后的内容如下:

1 
2
4
4.0.0
5
6
me.gacl
7
system-parent
8
1.0-SNAPSHOT
9
10 11
system-dao
12
jar
13 14
system-dao
15
http://maven.apache.org
16
17
UTF-8
18
19
20
21
22
me.gacl
23
system-domain
24
${project.version}
25
26
27

四、创建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文件自动变成如下内容:

1 
2
3
4.0.0
4 5
me.gacl
6
system-parent
7
1.0-SNAPSHOT
8
pom
9 10
system-parent
11
http://maven.apache.org
12 13
14
UTF-8
15
16 17
18
19
junit
20
junit
21
3.8.1
22
test
23
24
25
26
system-domain
27
system-dao
28
system-service
29
30

  修改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。修改后的内容如下:

1 
2
4
4.0.0
5
6
me.gacl
7
system-parent
8
1.0-SNAPSHOT
9
10 11
system-service
12
jar
13 14
system-service
15
http://maven.apache.org
16
17
UTF-8
18
19
20
24
25
me.gacl
26
system-dao
27
${project.version}
28
29
30

五、创建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-web\src\main\webapp目录中还生成了一个简单的index.jsp,如下图所示:

  

  里面的内容为

Hello World!

  system-web\src\main\webapp\WEB-INF目录中生成了web.xml

  

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

1 
2
3
4.0.0
4 5
me.gacl
6
system-parent
7
1.0-SNAPSHOT
8
pom
9 10
system-parent
11
http://maven.apache.org
12 13
14
UTF-8
15
16 17
18
19
junit
20
junit
21
3.8.1
22
test
23
24
25
26
system-domain
27
system-dao
28
system-service
29
system-web
30
31

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

1 
2
4
4.0.0
5
6
me.gacl
7
system-parent
8
1.0-SNAPSHOT
9
10 11
system-web
12
war
13 14
system-web Maven Webapp
15
http://maven.apache.org
16
17
20
21
me.gacl
22
system-service
23
${project.version}
24
25
26
27
system-web
28
29

   注意,web项目的打包方式是war

六、编译运行项目

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

1 
2
4
4.0.0
5
6
me.gacl
7
system-parent
8
1.0-SNAPSHOT
9
10 11
system-web
12
war
13 14
system-web Maven Webapp
15
http://maven.apache.org
16
17
20
21
me.gacl
22
system-service
23
${project.version}
24
25
26
27
system-web
28
29
30
31
org.mortbay.jetty
32
maven-jetty-plugin
33
34
35
36

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

mvn clean install

  如下图所示:

  

  

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

  

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

mvn jetty:run

  如下图所示:

  

  

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

  

七、导入Eclipse中进行开发

  操作步骤如下所示:

  

  

  

  

  

 

 
 

转载于:https://www.cnblogs.com/junle/p/5129397.html

你可能感兴趣的文章
JAVA设计模式之简单工厂模式与工厂方法模式
查看>>
③面向对象程序设计——封装
查看>>
【19】AngularJS 应用
查看>>
Spring
查看>>
Linux 系统的/var目录
查看>>
Redis学习---Redis操作之其他操作
查看>>
WebService中的DataSet序列化使用
查看>>
BZOJ 1200 木梳
查看>>
【Linux】【C语言】菜鸟学习日志(一) 一步一步学习在Linxu下测试程序的运行时间...
查看>>
hostname
查看>>
SpringBoot使用其他的Servlet容器
查看>>
关于cookie存取中文乱码问题
查看>>
k8s架构
查看>>
select 向上弹起
查看>>
mysql 多表管理修改
查看>>
group by order by
查看>>
bzoj 5252: [2018多省省队联测]林克卡特树
查看>>
https 学习笔记三
查看>>
华为“云-管-端”:未来信息服务新架构
查看>>
基于Sentinel实现redis主从自动切换
查看>>