posts - 5, comments - 5, trackbacks - 0, articles - 0

首先下载maven工具,解压后在conf/settings.xml文件中添加:
<localRepository>E:/Workspaces/.m3</localRepository>
此为maven下载jar及其相关文件的仓库
第二步,安装eclipse的maven插件M2eclipse:
http://m2eclipse.sonatype.org/sites/m2e
安装完成后打开eclipse->window->preferences->maven
->installations->add->指定maven安装路径
->user settings->指定maven配置文件settings.xml
第三步,创建maven项目,properties->project facets->convert to faceted form...
勾上dynamic web module,点击futher configuration available..., 勾上generate web.xml deployment descriptor,更改webcontent目录为src/main/webapp后点击OK.此时点击项目properties->deployment assembly可以看到指定的webapp路径就是是src/main/webapp目录
第四步,修改项目pom.xml文件:

Xml代码

  1. ...  
  2. <build>
  3. <sourceDirectory>src/main/java</sourceDirectory>
  4. <testSourceDirectory>src/test/java</testSourceDirectory>
  5. <resources>
  6. <resource>
  7. <directory>src/main/resources</directory>
  8. </resource>
  9. </resources>
  10. <testResources>
  11. <testResource>
  12. <directory>src/test/resources</directory>
  13. </testResource>
  14. </testResources>
  15. <outputDirectory>src/main/webapp/WEB-INF/classes</outputDirectory>
  16. <testOutputDirectory>src/main/webapp/WEB-INF/classes</testOutputDirectory>
  17. <plugins>
  18. <plugin>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>2.3.2</version>
  21. <configuration>
  22. <source>1.6</source>
  23. <target>1.6</target>
  24. </configuration>
  25. </plugin>
  26. <plugin>
  27. <artifactId>maven-resources-plugin</artifactId>
  28. <version>2.5</version>
  29. <executions>
  30. <execution>
  31. <phase>compile</phase>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. <plugin>
  36. <artifactId>maven-dependency-plugin</artifactId>
  37. <version>2.4</version>
  38. <executions>
  39. <execution>
  40. <phase>compile</phase>
  41. <goals>
  42. <goal>copy-dependencies</goal>
  43. </goals>
  44. <configuration>
  45. <outputDirectory>src/main/webapp/WEB-INF/lib</outputDirectory>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. <plugin>
  51. <artifactId>maven-clean-plugin</artifactId>
  52. <version>2.4.1</version>
  53. <configuration>
  54. <filesets>
  55. <fileset>
  56. <directory>src/main/webapp/WEB-INF/lib</directory>
  57. <followSymlinks>false</followSymlinks>
  58. </fileset>
  59. </filesets>
  60. </configuration>
  61. </plugin>
  62. </plugins>
  63. </build>

这样修改pom.xml后,删除target目录,在打开cmd:
在项目根路径下运行:
mvn eclipse:eclipse
这样重新生成的classpath会将编译好的java文件和resources中的配置文件指定为src/main/webapp/WEB-INF/classes.
再运行:
mvn compile
之后,mvn会自动编译java文件,copy resources中的文件,并放到classes路径下,并且将项目依赖的jar包copy到lib目录,至此完整的项目形成,全部文件都在webapp目录下.
最后一步,将项目发布到tomcat上:
点击eclipse中servers->new->server,全部finish以后双击该server,切换到modules窗口->点击add external module->
在document base中browse到项目webapp路径
在path中输入"/项目名称"
点击OK后配置全部完成,这样配置的好处不只是热部署,因为eclipse自动编译java文件经常出现问题,在这样的情况下随时可以在项目根路径下用mvn compile命令编译项目

原文链接http://vincentzheng.iteye.com/blog/1474068


只有注册用户登录后才能发表评论。


网站导航: