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

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

 

posted @ 2022-11-05 17:02  李林林  阅读(11)  评论(0编辑  收藏  举报