使用 Spring Initializr 创建新工程时出现连接超时的解决方法
1. 问题描述
在使用Spring Initializr创建新工程时,偶然发现因连接超时而导致工程无法创建。报错信息如下:
Initialization failed for ‘https://start.spring.io’
Please check URL, network and proxy settings.
Error message:
Cannot download ‘https://start.spring.io’: connect timed out
2. 解决方法
2.1 测试连通性
首先测试连通性,进入Setting页面,点击 HTTP Proxy - Check Connection 在输入框中输入测试链接 http://start.springboot.io/ ,点击 OK 。
测试连通性通过。
2.2 修改url
重新进入新工程创建页,在 Choose starter service URL 处选择 Custom ,填入已测试通过的URL http://start.springboot.io/ ,点击 Next 。
项目创建成功!