Springboot基础(一)

Tools : spring Tool Suite 3.9.2 (https://spring.io/tools/sts/) ide安装了3个小时也没装上,直接下载了工具;

Springboot基础(一)next,

Springboot基础(一)选择web.

Springboot基础(一)

pom.xml

<dependency>
            <groupId>org.springframework.boot</groupId>    //里面又web的依赖
            <artifactId>spring-boot-starter-web</artifactId>

</dependency>

Spring boot入口类命名方式 artifactId + Application

Springboot基础(一)

添加测试控制器:

Springboot基础(一)

Springboot基础(一)

运行main方法:

Springboot基础(一)    Springboot基础(一)