nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

时间:2024-04-09 22:08:55

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

Springboot快速部署步骤

1.在你建立的工程下创建 Module 选择Spring initializr创建

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤
有的会出现标题中出现的问题
解决方法:先ping start.spring.io 是能看到自己想要的东西说明网址是可以连接的、在浏览器中直接运行https://start.spring.io/ 、start.spring.io那说明 ideal 也是可以进去的;在下方界面在对具体环境进行测试这个bug就解决了
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

这是运行界面,springboot的主界面设计也可以直接在这里建立文件在idea中打开项目
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤
settings->http proxy
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤
在check connection其中输入 https://start.spring.io
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

解决之后进入选择环境的界面
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

二.在Type类型选择Maven Project(项目的搭建工具)

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

三.创建依赖时勾上web(这个看你个人需要吧,可以自主选择)

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

四.启动项目

1.直接启动main方法
2.把项目打成jar包,通过指令启动jar包java -jar XXX.jar
3.把项目打成war包,在Tomcat启动项目
nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

五.做个小实例:

在src–>java—>com.example.demo下创建一个文件夹,名字为controller,
创建一个类,名为HelloController,写一个方法,返回"Hello World"到/hello

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤
然后启动项目,在网址上搜索 http://localhost:8080/hello,会看到Hello World,这说明项目部署成功。

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤

项目目录的一些解析

nitialization failed for ‘https://start.spring.io‘ Please check URL和Springboot快速部署步骤