1.使用IDEA 编辑器创建 File -> New -> Spring Initializr
2.填写包名,项目名等信息
3.勾选Web,我们需要创建的是RESTful的Web 服务
4.项目结构介绍,其中application.properties是配置文件
5.编写代码hello world:RestController是向访问者返回RESTful的结果,GetMapping是匹配"/helloword"的GET请求
6.测试访问
Over.....
1.使用IDEA 编辑器创建 File -> New -> Spring Initializr
2.填写包名,项目名等信息
3.勾选Web,我们需要创建的是RESTful的Web 服务
4.项目结构介绍,其中application.properties是配置文件
5.编写代码hello world:RestController是向访问者返回RESTful的结果,GetMapping是匹配"/helloword"的GET请求
6.测试访问
Over.....