从零开始搭建springboot项目

步骤一:

新建maven项目,选择webapp
从零开始搭建springboot项目_第1张图片

步骤二

一直next,直到finish,等待项目构建完成。
从零开始搭建springboot项目_第2张图片

步骤三

在pom.xml中继承springboot的父项目:

<!--继承父项目-->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.5.RELEASE</version>
    </parent>

在pom.xml引入springboot的web支持:

 <!--引入springboot的web支持-->
       <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-web</artifactId>
       </dependency>

步骤四

构造出如下目录结构:
从零开始搭建springboot项目_第3张图片

步骤五

在src/main/resources下,新建application.properties文件。
在这里插入图片描述

步骤六

新建Application启动类:

从零开始搭建springboot项目_第4张图片

步骤七

新建HelloController控制器类,用来测试springboot是否构建成功。
从零开始搭建springboot项目_第5张图片

步骤八

启动Application.java
从零开始搭建springboot项目_第6张图片
控制台显示如下,表示启动成功:
从零开始搭建springboot项目_第7张图片

步骤九

浏览器输入http://localhost:8080/hello,显示如下:
从零开始搭建springboot项目_第8张图片

你可能感兴趣的:(从零开始搭建springboot项目)