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