idea新建springboot项目

Posted rumian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了idea新建springboot项目相关的知识,希望对你有一定的参考价值。

一、新建springboot项目

点击 文件--New--项目

技术图片

 

 

 选择Spring Initializr

技术图片

 

 

 下一步

技术图片

 

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

技术图片

 

 下一步

技术图片

 

 点击完成

 

 

 二、启动项目

建立一个类

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.";
    }
}

点击绿色箭头运行

技术图片

 

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

技术图片

以上是关于idea新建springboot项目的主要内容,如果未能解决你的问题,请参考以下文章

idea新建springboot项目

idea新建springboot项目

Idea新建一个SpringBoot项目

IDEA新建项目系列(12)——IDEA创建SpringBoot项目

SpringBoot | idea新建项目

Intellij idea新建一个springboot项目