Java

SpringBoot | 使用Spring Initializr

2019-12-21  本文已影响0人  一颗白菜_

一、新建项目

新建项目,选择Spring Initializr




选择模块,我们选择一个Web模块:




自动给我们创建了整个目录架构:

二、编码

新建controller包,在包中新建HelloController

package com.cerr.springboot.controller;

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

@RestController
public class HelloController {

    @RequestMapping(value = "/hello")
    public String helloWorld(){
        return "hello world springboot";
    }
}

三、测试

点击Springboot01DemoApplication类,运行main方法启动该springboot项目:



在浏览器中访问:


上一篇下一篇

猜你喜欢

热点阅读