逻辑梳理
入口:xxxApplication.java中的main函数,@SpringBootApplication
找到其所在目录内的所有Controller,@RestController
每一个Controller映射到一个请求地址,@GetMapping
不需要任何配置文件
源码结构分析
https://github.com/spring-guides/gs-rest-service
complete:已经完成的源码,供我们练习时参考。
initial:构建的空项目,我们可以在这里练习。
main/...:工程代码,生产环境在这里运行。
test/...:测试项目,快速检测bug。