idea2019创建一个springboot项目(hello world)

IDEA创建一个SpringBoot项目

1.首先点击"Create New Project",创建一个新项目.

idea2019创建一个springboot项目(hello world)_第1张图片

2.点击"Spring Initializr", 选择自己的JDK版本, 点击"Next".

idea2019创建一个springboot项目(hello world)_第2张图片

3.点击Next""

idea2019创建一个springboot项目(hello world)_第3张图片

4.点击"Web",选择"Web",点击"Next",

idea2019创建一个springboot项目(hello world)_第4张图片

5.点击"Finish",完成.

idea2019创建一个springboot项目(hello world)_第5张图片

一个简单的springboot项目就创建完成了.

创建好的项目如图所示:

DemoApplication类是springboot项目的启动类,运行其中的主方法,项目就可以启动了,十分简单快捷。

idea2019创建一个springboot项目(hello world)_第6张图片

直接运行DemoApplication类是访问不到的下面看一下怎么访问这个项目

在com.example.demo中创建controller包,代码如下所示:

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

@RestController
@RequestMapping("/test")
public class interfacetest {
    @RequestMapping("/hello")
    public String hello(){
//        System.out.println("hello world");
        return "hello world";
    }
}

最后在浏览器中输入"http://localhost:8080/test/hello",就可以访问了

你可能感兴趣的:(Springboot)