向Eclipse工作台添加/创建Spring-Boot-Starter-Project时出现错误:
Project build error: Non-resolvable parent POM for com.example:demo-2:0.0.1-SNAPSHOT: Failure to transfer org.springframework.boot:spring-boot-starter-parent:pom:2.1.4.RELEASE from https://
repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact
org.springframework.boot:spring-boot-starter-parent:pom:2.1.4.RELEASE from/to central (https://repo.maven.apache.org/maven2): connect timed out and 'parent.relativePath' points at no local POM
这可能是因为我坐在我们公司的代理人后面。
该代理没有收到我的日食的任何请求。我已经读过有关它的内容,这似乎是Eclipse中的错误。
我尝试在Eclipse中设置代理:
窗口>首选项>常规>网络连接
手册: -具有HTTP和HTTPS的给定凭据 -具有HTTP,HTTPS和SOCKS的给定凭据
本机: -没有凭据,因为您无法在本地时设置它们
我试图在eclipse.ini中设置代理
那是pom.xml的重要部分。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo-2</name>
<description>Demo project for Spring Boot</description>
...
</project>
我希望从Internet下载父Pom时需要代理。
另一种选择是将父pom放入我们的Sonatype Nexus存储库管理中,然后在创建新的Spring-Boot-Starter-Project时从那里下载它。不幸的是我不知道如何。