IntelliJ IDEA 2017版 SpringBoot徒手书写HelloWorld

时间:2022-11-14 05:37:06

1、打开编译器,选择File---->New---->Project

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

2、弹出设置界面,选择如图样式的1.2.3

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

3、设置包名称

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

4、继续next

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

5、finish完成即可

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

6、自动生成目录层级

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

7、书写测试代码

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

8、源码

 package com.example.demo;

 import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; /**
* Created by liuya on 2018-01-16.
*/ @RestController
public class TestController { @RequestMapping("test")
public String test(){
return "<br/>=========================Test Demo=================================";
}
}

9、运行测试(首先配置好Maven环境)

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

10、结果样式

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

11、网页访问

IntelliJ IDEA 2017版  SpringBoot徒手书写HelloWorld

这样就成功搭建了一个SpringBoot项目