avax.servlet:javax.servlet-api:pom:3.1.0 failed to transfer from http://maven.aliyun.com/nexus/content/repositories/central/ during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update inte
时间: 2023-06-27 19:02:00 浏览: 249
java.lang.NoClassDefFoundError: javax/validation/valueextraction/ValueExtractorDeclarationException
这个错误是因为在之前的尝试中,从 http://maven.aliyun.com/nexus/content/repositories/central/ 下载 javax.servlet:javax.servlet-api:pom:3.1.0 失败了,并且这个失败已经被缓存在本地仓库中了。因此,Maven 不会再次尝试去下载它。
你可以尝试清除本地 Maven 仓库中的缓存,然后再重新构建项目。具体操作如下:
1. 关闭所有与 Maven 相关的程序;
2. 打开命令行窗口,输入以下命令清除缓存:
```
mvn dependency:purge-local-repository
```
3. 再输入以下命令重新构建项目:
```
mvn clean install
```
这样应该就能解决你的问题了。
阅读全文