myeclipse 2014新建maven web 项目步骤

Posted 孟宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了myeclipse 2014新建maven web 项目步骤相关的知识,希望对你有一定的参考价值。

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

技术分享技术分享技术分享

新建web项目:

技术分享

技术分享技术分享

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

技术分享

在pom.xml中加上:

 

1
2
3
4
5
6
7
8
9
10
 <plugins>     
     <plugin> 
        <groupid>org.apache.maven.plugins</groupid> 
        maven-resources-plugin</artifactid> 
        <version>2.6</version> 
         <configuration> 
           <encoding>utf-8</encoding> 
         </configuration> 
      </plugin>
  </plugins>


如果项目结构没有Maven Dependencies

 

 

技术分享

 

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

1
2
3
4
5
6
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
     
     
     
    </attribute></attribute></attributes>
</classpathentry>

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

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

 

 

 

1
 
1
-Dmaven.multiModuleProjectDirectory=$MAVEN_HOME

技术分享技术分享

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

以上是关于myeclipse 2014新建maven web 项目步骤的主要内容,如果未能解决你的问题,请参考以下文章

在MyEclipse中使用maven创建web项目

Apache Maven初识——MyEclipse中创建第Web Project

Apache Maven初识——MyEclipse中创建第Web Project

myeclipse2014创建maven的web项目和eclipse中创建maven的web项目显示为啥不一样

myeclipse 怎么配置maven web

MyEclipse中,使用Maven新建web项目后,提示The superclass "javax.servlet.http.HttpServlet" was not found