首页 > 其他分享 >003.完成第一个接口的开发

003.完成第一个接口的开发

时间:2022-11-05 17:13:00浏览次数:57  
标签:RestController 第一个 Boot firstrequest 接口 003 public

1.开发firstrequest接口

/**
 * 描述:     演示接口和传参
 * //@RestController 表示返回时JSON格式不是页面
 */
@RestController
public class ParaController
{
    @GetMapping("/firstrequest")
    public String firstRequest()
    {
        return "Hello Spring Boot,我的第一个Spring Boot接口";
    }
}

1.1 测试,在浏览器输入127.0.0.1:8080/firstrequest

 

标签:RestController,第一个,Boot,firstrequest,接口,003,public
From: https://www.cnblogs.com/LLL0617/p/16860595.html

相关文章