欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

IDEA 快速创建 Spring boot 2.x Hello world

程序员文章站 2024-02-02 11:25:52
...

1.新建项目:

IDEA 快速创建 Spring boot 2.x Hello world

2. 填写项目信息:

IDEA 快速创建 Spring boot 2.x Hello world

3. 依赖选择web项目:

IDEA 快速创建 Spring boot 2.x Hello world

4.一路next

IDEA 快速创建 Spring boot 2.x Hello world

5. 创建package hello并创建Controller类,代码如下

package com.fengling.demospringboot.hello;

import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
/**
 * @author aaa@qq.com
 * @date 2018/8/29 22:07
 */
@Controller
@EnableAutoConfiguration
public class SampleController {

    @RequestMapping("/")
    @ResponseBody
    public String sayHello(){
        return "Hello, Shenzhen";
    }
}

6. 启动Spring Boot

IDEA 快速创建 Spring boot 2.x Hello world

IDEA 快速创建 Spring boot 2.x Hello world

看到这个日志,就代表项目已经启动完毕了。

访问地址: localhost:8080

IDEA 快速创建 Spring boot 2.x Hello world

Spring boot helloworld 开发完毕。