我正在尝试通过Maven运行一个简单的Spring应用程序。
我完全按照以下指南:https://spring.io/guides/gs/serving-web-content/
然而,当我跑步时:./mvnw spring-boot:run -e -X
我收到以下错误:
[致命] org.springframework的不可解析的父POM:gs-serving-web-content:0.1.0:无法传输工件org.springframework.boot:spring-boot-starter-parent:pom:1.5。 2.RELEASE from / to central(https://repo.maven.apache.org/maven2):连接到192.168.208.51:3128
在之前的指南中,我被告知将其添加为.m2目录中的settings.xml文件:
<settings>
<proxies>
<proxy>
<id>example-proxy</id>
<active>true</active>
<protocol>http</protocol>
<host>192.168.208.51</host>
<port>3128</port>
<nonProxyHosts>*.google.com|*example.com</nonProxyHosts>
</proxy>
</proxies>
</settings>
其中包含错误所指的主机IP地址。
我已经在上面输入了IP地址而没有回复。
我想要做的就是在本地运行应用程序,因为Spring.io指南建议是可行的。
我还没有完全理解设置。
任何人都可以建议我做错了什么。 (我觉得这与settings.xml文件中的IP地址有关。