在平时的Javaweb项目开发中为了便于后期的维护,我们一般会进行分层开发,最常见的就是分为domain(域模型层)、dao(数据库访问层)、service(业务逻辑层)、web(表现层),这样分层之后,各个层之间的职责会比较明确,后期维护起来也相对比较容易,今天我们就是使用Maven来构建分模块项目。
在这个分模块项目中主要分为两个模块,Service模块和web模块,Service模块中包含dao,下面是项目结构
Complaints-parent
|----pom.xml(pom)
|----Complaints-web
|----pom.xml (war)
|----Complaints-service
|----pom.xml(jar)
Complaints-parent是父工程,同时承担聚合模块和父模块的作用,没有实际代码和资源文件;
Complaints-web是web工程,最终形成最终的war包;
Complaints-service是业务模块的逻辑部分,包含了数据库访问层和业务逻辑层,但是不包括web相关的部分;
上述简单示意图中,有一个父项目(Complaints-parent)聚合很多子项目(Complaints-web,Complaints-service)。每个项目,不管是父子,都含有一个pom.xml文件。而且要注意的是,小括号中标出了每个项目的打包类型。父项目是pom,也只能是pom。子项目有jar,或者war。
依赖关系是:Complaints-web需要依赖Complaints-service
接下来就是在Eclipse中搭建项目了:
1.父项目(Complaints-parent)
在Eclipse里面New ->MavenProject
;
在弹出界面中选择“Create a simple project”
父项目建好之后,目录下面只有一个src和pom.xml文件
将src文件夹删除,然后修改pom.xml文件,将jar修改为pom,
pom表示它是一个被继承的模块。(如果再创建项目时已经选为了pom就不需要修改)
以下是父项目的pom.xml的内容
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<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/maven-v4_0_0.xsd"
>
<modelversion>
4.0
.
0
</modelversion>
<groupid>com.hrtel</groupid>
Complaints-parent</artifactid>
<version>
0.0
.
1
-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Complaints-parent</name>
<modules>
<module>Complaints-service</module>
<module>Complaints-web</module>
</modules>
<dependencymanagement>
<dependencies>
<dependency>
<groupid>junit</groupid>
junit</artifactid>
<version>
4.12
</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencymanagement>
</project>
|
2.创建Complaints-service项目
选中刚建的父项目,在弹出菜单中点击 New ->MavenModule
;
使用默认的Archetype(默认:GroupId:org.apache.maven.archetypes,Artifact Id:maven-archetype-quickstart)
这样一个子项目就创建完成了,在文件系统中,子项目会建在父项目的目录中。
细心一点会发现,此时父项目的pom.xml文件中就多了一句
1
2
3
|
<modules>
<module>Complaints-service</module>
</modules>
|
3.创建web工程Complaints-web
选中刚建的父项目,在弹出菜单中点击 New ->MavenModule
;
1
|
创建完之后就会发现父项目的pom.xml文件中又自动多了一句
|
1
2
3
4
|
<modules>
<module>Complaints-service</module>
<module>Complaints-web</module>
</modules>
|
4.优化配置
Complaints-web是依赖service项目的
需要在web的pom.xml中添加依赖配置
1
2
3
4
5
|
<dependency>
<groupid>com.hrtel</groupid>
Complaints-service</artifactid>
<version>${project.version}</version>
</dependency>
|
按上面步骤创建的子项目,在pom.xml
中有个parent
节点,所以,他可以继承父项目的相关信息。没错,父子项目中存在继承关系。
在子项目的pom.xml
中,子项目的groupId
和version
一般和父项目相同,那么可以把子项目的这两个参数删除,这样会自动继承父项目的取值。
同样,如果其他的一些属性,所有子项目都是一样的,那么可以上移到父项目中设置,子项目中无需重复设置。比如:UTF-8可以仅在父项目中设置一次。
Manen提供dependencyManagement
和
pluginManagement
两个标签。使用这两个标签,可以在父项目中统一管理依赖和插件的配置参数,比如版本号啥的。而在子项目中,仅需列出需要使用的依赖和插件的
groupId
和
artifactId
就可以了,其他信息会自动从父项目管理的信息里面获取。
在父项目中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<dependencymanagement>
<dependencies>
<dependency>
<groupid>junit</groupid>
junit</artifactid>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupid>org.slf4j</groupid>
slf4j-log4j12</artifactid>
<version>
1.7
.
5
</version>
<scope>test</scope>
</dependency>
<dependency>
<groupid>org.slf4j</groupid>
slf4j-api</artifactid>
<version>
1.7
.
5
</version>
</dependency>
</dependencies></dependencymanagement>
|
1
2
3
4
5
6
|
<dependencies>
<dependency>
<groupid>junit</groupid>
junit</artifactid>
</dependency>
</dependencies>
|
由于web项目依赖service项目,子项目中只需service中添加配置,web项目会自动加载过去的
最后是打包配置:
打包时需要把service项目中的xml文件和别的property文件也打进去,就得在pom文件中说明
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!-- 打包时把需要的xml文件一块打进去 -->
<build>
<finalname>Complaints-service</finalname>
<plugins>
<plugin>
<groupid>org.apache.maven.plugins</groupid>
maven-jar-plugin</artifactid>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**
/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/
*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
|
一下是三个项目的pom.xml中的全部内容
Complaints-parent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<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/maven-v4_0_0.xsd"
>
<modelversion>
4.0
.
0
</modelversion>
<groupid>com.hrtel</groupid>
Complaints-parent</artifactid>
<version>
0.0
.
1
-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Complaints-parent</name>
<modules>
<module>Complaints-service</module>
<module>Complaints-web</module>
</modules>
<dependencymanagement>
<dependencies>
<span style=
"white-space: pre"
> </span><dependency>
<groupid>junit</groupid>
junit</artifactid>
<version>
4.12
</version>
<scope>test</scope>
</dependency>
<!-- spring beans -->
<dependency>
<groupid>org.springframework</groupid>
spring-core</artifactid>
<version>
4.2
.
5
.RELEASE</version>
</dependency>
</dependencies>
</dependencymanagement>
</project>
|
Complaints-service:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<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/maven-v4_0_0.xsd"
>
<modelversion>
4.0
.
0
</modelversion>
<parent>
<groupid>com.hrtel</groupid>
Complaints-parent</artifactid>
<version>
0.0
.
1
-SNAPSHOT</version>
</parent>
Complaints-service</artifactid>
<name>Complaints-service</name>
<url>http:
//maven.apache.org</url>
<properties>
<project.build.sourceencoding>UTF-
8
</project.build.sourceencoding>
</properties>
<!-- 打包时把需要的xml文件一块打进去 -->
<build>
<finalname>Complaints-service</finalname>
<plugins>
<plugin>
<groupid>org.apache.maven.plugins</groupid>
maven-jar-plugin</artifactid>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**
/*.xml</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/
*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
</build>
<!-- 依赖配置 -->
<dependencies>
<dependency>
<groupid>junit</groupid>
junit</artifactid>
</dependency>
<!-- spring beans -->
<dependency>
<groupid>org.springframework</groupid>
spring-core</artifactid>
</dependency>
</dependencies>
</project>
|
Complaints-web
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<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/maven-v4_0_0.xsd"
>
<modelversion>
4.0
.
0
</modelversion>
<parent>
<groupid>com.hrtel</groupid>
Complaints-parent</artifactid>
<version>
0.0
.
1
-SNAPSHOT</version>
</parent>
Complaints-web</artifactid>
<packaging>war</packaging>
<name>Complaints-web Maven Webapp</name>
<url>http:
//maven.apache.org</url>
<dependencies>
<dependency>
<groupid>com.hrtel</groupid>
Complaints-service</artifactid>
<version>${project.version}</version>
</dependency>
<dependency>
<groupid>junit</groupid>
junit</artifactid>
</dependency>
</dependencies>
<build>
<finalname>Complaints-web</finalname>
</build>
</project>
|