问题:maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories:
原因:名称为maven-default-http-blocker 的拦截器拦截了库的镜像。
场景:在企业内部架设了一个Nexus的私有库,库的地址是: http://hostname:8081/repository/maven-public/, 于是在项目中需要从这个库中获取依赖的配置方式是:在项目的pom.xml 增加了这个库的配置, 配置如下:
<repositories>
<repository>
<id>my-nexus</id>
<name>My Nexus Repository</name>
<url>http://hostname:8081/repository/maven-public/</url>
</repository>
</repositories>
这里使用的Maven的版本是: apache-maven-3.8.8-bin。Maven在升级到3.8.1以后,从安全角度考虑,默认将非https的远端仓库屏蔽掉了, 实现方式是在 Maven的settings.xml 增加了如下配置:
解决方法: 解决方法有多种, 从处理的易繁程度, 分别有如下方式:
方法1. 注释Maven配置文件的Block设定,settings.xml 文件的位置: $MAVEN_HOME/conf/settings.xml
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>external:http:*</mirrorOf>
<name>Pseudo repository to mirror external repositories initially using HTTP.</name>
<url>http://0.0.0.0/</url>
<blocked>true</blocked>
</mirror>
方法2: 使用给dummy镜像覆盖掉默认配置中的镜像配置(可以在~/.m2/settings.xml配置)
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>external:dummy:*</mirrorOf>
<name>Pseudo repository to mirror external repositories initially using HTTP.</name>
<url>http://0.0.0.0/</url>
<blocked>true</blocked>
</mirror>
方法3: 为该http源增加如下mirror配置, 也就是对于指定的库不阻止。
方法4:降低Maven 版本到 3.8.1以下
方法5:让这个http的Maven库支持https , 转换https 涉及到https 相关的证书产生和签名, 但是这是最安全的方式。