eclipse创建maven web项目

eclipse创建maven web项目:

1、安装eclipse maven插件

2、新建maven project选择webapp模板。

3、改造为maven文档结构。

eclipse创建maven web项目

4、添加项目的JAVAEE支持

eclipse创建maven web项目

这里我选择的web modul版本为2.5,因为我平时使用的tomcat版本为tomcat 6。在右侧的runtime处可以配置tomcat 如果web modul版本选择3.0的话,tomcat 6是不能选择的。

  添加web modul后目录结构发生了变化:

    eclipse创建maven web项目将WebContent目录内的复制到webapp下即可,webapp目录相当于普通项目的WebContent,之后可以将WebContent目录删除。

5、配置项目文件输出路径。

eclipse创建maven web项目

但是为了maven程序可以使用eclipse调试和tomcat热部署,这里稍后会做变更。

也可以使用pom.xml配置文件配置项目的source:

<build>
     <sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory> <resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<outputDirectory>src/main/webapp/WEB-INF/classes</outputDirectory>
<testOutputDirectory>src/main/webapp/WEB-INF/classes</testOutputDirectory>
</build>
上一篇:在Eclipse中使用Struts和Hibernate框架搭建Maven Web项目


下一篇:搭建maven web项目并配置quartz定时任务【业务:对比数据变化内容】 历程