VSCode快速开始Spring Boot开发相关资料
mvnsettings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
<mirror>
<id>repo1</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo1.maven.org/maven2/</url>
</mirror>
<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<name>Human Readable Name for this Mirror.</name>
<url>http://repo2.maven.org/maven2/</url>
</mirror>
</mirrors>
</settings>
Spring Boot VSCode 文档:
https://code.visualstudio.com/docs/java/java-spring-boot
Spring Boot VSCode 文档:
https://start.spring.io/
如果选择 boot 版本号的地方无法打开,可能是网络问题,如果网络无法解决,可以尝试搭建自己的这个网站,然后按照视频说明修改即可。
"spring.initializr.serviceUrl": [
"https://start.spring.io/"
]

