使用myeclipse新建maven web 项目

来源:互联网 发布:淘宝优惠券制作教程 编辑:程序博客网 时间:2024/05/19 22:03

原地址:http://blog.csdn.net/aqsunkai/article/details/51286373

首先在myeclipse中配置maven的安装路径:


新建web项目:

pom.xml文件报错解决办法:


在pom.xml中加上:

[html] view plain copy
print?
  1.  <plugins>        
  2.      <plugin>    
  3.         <groupId>org.apache.maven.plugins</groupId>    
  4.         <artifactId>maven-resources-plugin</artifactId>    
  5.         <version>2.6</version>    
  6.          <configuration>    
  7.            <encoding>utf-8</encoding>    
  8.          </configuration>    
  9.       </plugin>   
  10.   </plugins>  
 <plugins>           <plugin>          <groupId>org.apache.maven.plugins</groupId>          <artifactId>maven-resources-plugin</artifactId>          <version>2.6</version>           <configuration>             <encoding>utf-8</encoding>           </configuration>        </plugin>   </plugins>

如果项目结构没有Maven Dependencies



需要在项目根路径下的.classpath文件里加上

[html] view plain copy
print?
  1. <classpathentry kind=“con” path=“org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER”>  
  2.     <attributes>  
  3.     <attribute name=“maven.pomderived” value=“true”/>  
  4.     <attribute name=“org.eclipse.jst.component.dependency” value=“/WEB-INF/lib”/>  
  5.     </attributes>  
  6. </classpathentry>  
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">    <attributes>    <attribute name="maven.pomderived" value="true"/>    <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>    </attributes></classpathentry>

如果项目启动时报maven与jdk版本不对应,需要添加一行代码:

MAVEN_HOME是你在环境变量里配置的maven安装路径

[html] view plain copy
print?
  1. -Dmaven.multiModuleProjectDirectory=MAVEN_HOME&nbsp;&nbsp;</span></span></li></ol></div><pre name="code" class="html" style="display: none;">-Dmaven.multiModuleProjectDirectory=MAVEN_HOME

    本人搭建的maven web项目,框架用spring springMVC mybatis,架包都是最新的,已经上传,需要的可以下载

原创粉丝点击