aqsunkai

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


新建web项目:

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


在pom.xml中加上:

<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文件里加上

<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安装路径

-Dmaven.multiModuleProjectDirectory=$MAVEN_HOME

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

 

分类:

技术点:

相关文章:

  • 2021-04-07
  • 2021-07-11
  • 2021-11-18
  • 2021-08-14
  • 2022-01-18
  • 2021-06-02
  • 2021-10-26
猜你喜欢
  • 2022-01-10
  • 2021-06-13
  • 2021-10-26
  • 2021-11-01
  • 2021-05-17
  • 2021-05-19
相关资源
相似解决方案