在平时的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,用来给各个子模块继承。
进入命令行,输入以下命令:
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文件,将
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
pom
system-parent
http://maven.apache.org
UTF-8
junit
junit
3.8.1
test
在命令行进入创建好的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文件如下:
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
pom
system-parent
http://maven.apache.org
UTF-8
junit
junit
3.8.1
test
system-domain
修改system-domain目录中的pom.xml文件,把
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
system-domain
jar
system-domain
http://maven.apache.org
在命令行进入创建好的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文件自动变成如下内容:
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
pom
system-parent
http://maven.apache.org
UTF-8
junit
junit
3.8.1
test
system-domain
system-dao
修改system-dao目录中的pom.xml文件,,把
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
system-dao
jar
system-dao
http://maven.apache.org
UTF-8
me.gacl
system-domain
${project.version}
在命令行进入创建好的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文件自动变成如下内容:
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
pom
system-parent
http://maven.apache.org
UTF-8
junit
junit
3.8.1
test
system-domain
system-dao
system-service
修改system-service目录中的pom.xml文件,,把
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
system-service
jar
system-service
http://maven.apache.org
UTF-8
me.gacl
system-dao
${project.version}
在命令行进入创建好的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文件自动变成如下内容:
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
pom
system-parent
http://maven.apache.org
UTF-8
junit
junit
3.8.1
test
system-domain
system-dao
system-service
system-web
修改system-web目录中的pom.xml文件,,把
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
system-web
war
system-web Maven Webapp
http://maven.apache.org
me.gacl
system-service
${project.version}
system-web
注意,web项目的打包方式是war。
经过上面的五个步骤,相关的模块全部创建完成,怎么运行起来呢。由于最终运行的是system-web模块,所以我们对该模块添加jetty支持,方便测试运行。修改system-web项目的pom.xml如下:
4.0.0
me.gacl
system-parent
1.0-SNAPSHOT
system-web
war
system-web Maven Webapp
http://maven.apache.org
me.gacl
system-service
${project.version}
system-web
org.mortbay.jetty
maven-jetty-plugin
在命令行进入system-parent目录,然后执行下列命令:
mvn clean install
如下图所示:
命令执行完后,在system-web目录下多出了target目录,里面有了system-web.war,如下图所示:
命令行进入sytem-web目录,执行如下命令,启动jetty
mvn jetty:run
如下图所示:
启动jetty服务器后,访问http://localhost:8080/system-web/ 运行结果如下图所示:
操作步骤如下所示:
作者:孤傲苍狼
个人主页:http://www.cnblogs.com/xdp-gacl