Maven项目的目录结构

 刚接触Maven没多长时间,实习时在的小公司很不规范,所有web项目都是dynamic web project搭建,没有用到项目构建,管理工具,导致了非常多的重复工作与低效。

  先来看看Maven的功能下面是来自于百度百科:Maven是基于项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具。Maven 除了以程序构建能力为特色之外,还提供高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目。由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目发文时使用 Maven,而且公司项目采用 Maven 的比例在持续增长。

  首先构建一个Maven项目,网上有很多介绍,就不重复了。整个Maven项目里很重要的就是这个pom文件。pom就是用来专门管理项目中用到的各种资源,包括jar包,jdbc驱动等,只要在pom中写下如下格式的xml,就能够自动为你下载部署该开发包(这是我的项目中的pom文件,也是在网上找的):

复制代码
  1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3   <modelVersion>4.0.0modelVersion>
  4   <groupId>com.myapp.lxiaogroupId>
  5   <artifactId>MavenSSHartifactId>
  6   <packaging>warpackaging>
  7   <version>0.0.1-SNAPSHOTversion>
  8   <name>MavenSSH Maven Webappname>
  9   <url>http://maven.apache.orgurl>
 10   <dependencies>
 11       
 12       <dependency>
 13         <groupId>mysqlgroupId>
 14         <artifactId>mysql-connector-javaartifactId>
 15         <version>5.1.34version>
 16     dependency>
 17     <dependency>
 18       <groupId>junitgroupId>
 19       <artifactId>junitartifactId>
 20       <version>3.8.1version>
 21       <scope>testscope>
 22     dependency>
 23     
 24     <dependency>
 25         <groupId>org.apache.strutsgroupId>
 26         <artifactId>struts2-coreartifactId>
 27         <version>2.3.1.2version>
 28     dependency>
 29     
 30     <dependency>
 31         <groupId>org.apache.strutsgroupId> 
 32            <artifactId>struts2-spring-pluginartifactId> 
 33         <version>2.3.1.2version> 
 34     dependency>
 35     
 36     <dependency> 
 37         <groupId>org.apache.strutsgroupId> 
 38         <artifactId>struts2-json-pluginartifactId> 
 39         <version>2.3.1.2version> 
 40     dependency>
 41     
 42     <dependency> 
 43         <groupId>org.hibernategroupId> 
 44         <artifactId>hibernate-coreartifactId> 
 45         <version>3.6.10.Finalversion> 
 46     dependency>
 47     
 48     <dependency> 
 49         <groupId>org.aspectjgroupId> 
 50         <artifactId>aspectjweaverartifactId> 
 51         <version>1.7.3version> 
 52     dependency>
 53     
 54     <dependency> 
 55         <groupId>cglibgroupId> 
 56         <artifactId>cglibartifactId> 
 57         <version>2.2version> 
 58     dependency>
 59     
 60     <dependency> 
 61         <groupId>org.slf4jgroupId> 
 62         <artifactId>slf4j-apiartifactId> 
 63         <version>1.7.5version> 
 64         <scope>compilescope> 
 65     dependency>
 66     
 67     
 68     <dependency>
 69         <groupId>org.springframeworkgroupId>
 70         <artifactId>springartifactId>
 71         <version>2.5.6version>
 72         <type>jartype> 
 73     dependency>
 74     
 75     <dependency> 
 76         <groupId>org.springframeworkgroupId> 
 77         <artifactId>spring-webmvcartifactId> 
 78         <version>3.2.3.RELEASEversion> 
 79         <type>jartype> 
 80         <scope>compilescope> 
 81     dependency>
 82     
 83     <dependency> 
 84         <groupId>log4jgroupId> 
 85         <artifactId>log4jartifactId> 
 86         <version>1.2.16version> 
 87         <scope>compilescope> 
 88     dependency>
 89     
 90     <dependency> 
 91         <groupId>javax.servlet.jspgroupId> 
 92         <artifactId>jsp-apiartifactId> 
 93         <version>2.1version> 
 94         <scope>providedscope> 
 95     dependency>
 96     
 97     <dependency> 
 98         <groupId>c3p0groupId> 
 99         <artifactId>c3p0artifactId> 
100         <version>0.9.1.2version> 
101     dependency>
102     
103     <dependency> 
104         <groupId>javax.servletgroupId> 
105         <artifactId>servlet-apiartifactId> 
106         <version>2.5version> 
107         <scope>providedscope> 
108     dependency>
109     
110     <dependency> 
111         <groupId>mysqlgroupId> 
112         <artifactId>mysql-connector-javaartifactId> 
113         <version>5.1.26version> 
114         <scope>compilescope> 
115     dependency>
116   dependencies>
117   <build>
118     <finalName>MavenSSHfinalName>
119   build>
120 project>
复制代码

然后我们来看一下Maven项目的目录结构,能够知道不同程序,文件都放到哪些文件夹下。

 

src/main/java application library sources - java源代码文件
src/main/resources application library resources - 资源库,会自动复制到classes文件夹下
src/main/filters resources filter files - 资源过滤文件
src/main/assembly assembly descriptor - 组件的描述配置,如何打包
src/main/config configuration files - 配置文件
src/main/webapp web application sources - web应用的目录,WEB-INF,js,css等
src/main/bin 脚本库
src/test/java 单元测试java源代码文件
src/test/resources 测试需要的资源库
src/test/filters 测试资源过滤库
src/site 一些文档
target/ 存放项目构建后的文件和目录,jar包,war包,编译的class文件等;Maven构建时生成的
pom.xml 工程描述文件
LICENSE.txt license
README.txt read me

知道了maven的目录结构,我们就可以在各自的目录下创建对应的文件了。

引用:http://blog.csdn.net/robinjwong/article/details/38687713

你可能感兴趣的:(develop,tools)