idea新建springboot项目

一、新建springboot项目

点击 文件--New--项目

idea新建springboot项目

 

 

 选择Spring Initializr

idea新建springboot项目

 

 

 下一步

idea新建springboot项目

 

 按照上面的或者直接下一步

idea新建springboot项目

 

 下一步

idea新建springboot项目

 

 点击完成

 

 

 二、启动项目

建立一个类

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class Test {

    @RequestMapping("/hello")
    public String helloSpringBoot() {
        return "Hello SpringBoot Project.";
    }
}

点击绿色箭头运行

idea新建springboot项目

 

 打开网页输入http://localhost:8080/hello

idea新建springboot项目

上一篇:Spring注解学习整理笔记(持续更新)


下一篇:django--随项目启动而运行的定时任务,无需开启新的进程管理