配置了maven的国内镜像后,问题:(https://repo.maven.apache.org/maven2): Not authorized , ReasonPhrase:Authorizatio

一.问题:

最近学习springboot,从网上导入工程后,都出现maven无法下载相关资源的问题。

二.解决思路如下:

1.怀疑是网络限制的原因,故在网上找了相关的解决方案,使用了阿里的云仓库,在maven的settings.xml文件的Mirrors中添加了如下内容:


	 
	  
        
            alimaven
           central
            aliyun maven
            https://maven.aliyun.com/nexus/content/repositories/central/
         
     
        
        
            repo1
             central
            Human Readable Name for this Mirror.
            http://repo1.maven.org/maven2/
         
     
         
         
             repo2
             central
             Human Readable Name for this Mirror.
             http://repo2.maven.org/maven2/
         

  

2.添加完成后,发现部分资源 可以下载了,但仍然有许多资源无法下载,后来参考了https://blog.sonatype.com/using-nexus-3-as-your-repository-part-1-maven-artifacts,发现pom.xml都是继承自super pom,
super pom中的有如下内容:


    
      central
      Central Repository
      http://repo.maven.apache.org/maven2
      default
      
        false
      
    
  

  
    
      central
      Central Repository
      http://repo.maven.apache.org/maven2
      default
      
        false
      
      
        never
      
    
  

故当maven下载资源时,会优先使用http://repo.maven.apache.org/maven2去下载。

最终解决方案是在自定义的pom.xml中加入如下内容:


    
        central
        http://host:port/content/groups/public
    



    
        central
        http://host:port/content/groups/public
    

 

你可能感兴趣的:(spring,boot)