maven web 项目导入eclipse 发布时不自动拷贝依赖包到lib - 点滴记忆*记忆点滴
收藏本站

maven web 项目导入eclipse 发布时不自动拷贝依赖包到lib

  maven web 项目导入eclipse 发布时不自动拷贝依赖包到lweb-inf/ib问题 。

 解决方案是:运行转eclipse插件式增加参数, mvn eclipse:eclipse -Dwtpversion=2.0


Problem

In Eclipse 3.5 or early version, in order to deployed the Maven dependencies to the correct “/WEB-INF/lib ” folder, you have to configure the dependencies via “Java EE Module Dependencies”, and the updated “.classpath ” file will look like following :

File : “.classpath”, by Java EE Module Dependencies…

 

  1. ...  
  2. <classpathentry kind="var" path="M2_REPO/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar"   
  3.    sourcepath="M2_REPO/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1-sources.jar">  
  4.    <attributes>  
  5.      <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>  
  6.    </attributes>  
  7. </classpathentry>  
  8. ...  

Since Eclipse 3.6, the “Java EE Module Dependencies” is replaced by “Web Deployment Assembly”, but you can do the same via the “Referenced Projects Classpath Entries”, however, it will update the “.classpath ” file as following :

File : “.classpath”, by Web Deployment Assembly…

 

  1. ...  
  2. <classpathentry kind="var" path="M2_REPO/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar"   
  3.    sourcepath="M2_REPO/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1-sources.jar">  
  4.    <attributes>  
  5.      <attribute name="org.eclipse.jst.component.dependency" value="../"/>  
  6.    </attributes>  
  7. </classpathentry>  
  8. ...  

Sadly, the default (value=”../”) makes all the Maven’s dependencies failed to deploy.

Solution

Not a big issue, you still can modify the (value=”../”) to (value=”/WEB-INF/lib”) manually, but it will get override every time you run a Maven build. No worry, there are still have two solutions :

1. WTP Support

Ignore the “Referenced Projects Classpath Entries” settings, instead, make the Maven supports WTP 2.0

  1. mvn eclipse:eclipse -Dwtpversion=2.0  

It will generate a new file named “org.eclipse.wst.common.component “, under “settings ” folder, see a portion of this file :

File : “org.eclipse.wst.common.component”, by WTP

 

  1. ...  
  2. <dependent-module archiveName="jsp-api-2.1.jar" deploy-path="/WEB-INF/lib"   
  3.   handle="module:/classpath/var/M2_REPO/javax/servlet/jsp/jsp-api/2.1/jsp-api-2.1.jar">  
  4.   <dependency-type>uses</dependency-type>  
  5. </dependent-module>  
  6. ...  

With WTP support, it helps to deploy the Maven dependencies to “/WEB-INF/lib ” folder correctly.

    留下足迹