一导入maven项目,就出现错误.

如:Description Resource Path Location Type ArtifactTransferException: Could not transfer artifact commons-io:commons-io:jar

在你的pom.xml文件中添加以下代码;

  
    
      
        false
      
      central
      Maven Repository Switchboard
      http://repo2.maven.org/maven2
    
  

此方法源于CSDN 博主铁铲的博客,
图片.png

这段代码是将本地仓库加载jar包关闭,直接从maven中央仓库下载jar包.只要你的pom.xml中配有坐标,相关的jar包都会直接下载到你的项目中.

你可能感兴趣的:(一导入maven项目,就出现错误.)