美文网首页
创建第一个SpringBoot项目

创建第一个SpringBoot项目

作者: SK丿希望 | 来源:发表于2020-05-11 11:52 被阅读0次

    环境:MacOS
    工具:IDEA



    选择SDK版本




    删除多余文件

    image.png
    创建Controller文件夹
    package com.yhd.springboottest.Controller;
    
    
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    @RestController // 1 上面的包自动填充的
    public class HelloController {
        
        @GetMapping("hello") // 2 设置请求的方式(这里用Get请求)
        public String hello() { // 3方法
            return "你好SpringBoot!";
        }
    }
    
    

    点击运行项目


    打开浏览器输入localhost:8080/hello
    运行结果

    相关文章

      网友评论

          本文标题:创建第一个SpringBoot项目

          本文链接:https://www.haomeiwen.com/subject/ryzynhtx.html