Hello! 欢迎来到小浪资源网!


Spring Framework 4.1.x导入IDEA时遇到401认证错误怎么办?


Spring Framework 4.1.x导入IDEA时遇到401认证错误怎么办?

spring-framework 4.1.x 导入 idea 遇到的认证问题

在导入 spring-framework 4.1.x 源代码到 idea 中时,可能会遇到以下错误:

received status code 401 from server

这是因为从 https://repo.spring.io 下载依赖项需要认证信息。解决方法是修改 gradle 构建配置文件中的仓库信息,将其替换为其他提供 public 访问的 spring 仓库,例如阿里云镜像站:

buildscript {     repositories {         mavenCentral()         maven { url "https://maven.aliyun.com/repository/public" }     }     dependencies {         classpath "org.springframework.build:spring-build-gradle-plugins:2.4.0"     } }

相关阅读