0x001 创建项目
- 创建一个项目
- 选择 SpringInitializr
- 填写
group
、artifact
,这两个可以组合成package
,一般group
是项目域名倒置,artifact
是项目名,然后由这两个组合成主包名。
- 添加
web
依赖
- 选择项目存储地址
- 勾选自动导入,这个选项可以不选,作用是在
gradle
依赖发生变化的时候是否自动导入。
- 等待初次导包结束
- 查看
build.gradle
0x002 创建一个最简单的rest
服务并测试
-
添加一个
com.lyxxxx.springbootstudy.controller.HelloController
// com.lyxxxx.springbootstudy.controller.HelloController package com.lyxxxx.springbootstudy.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @GetMapping("/") public Object hello() { return "hello"; } }
- 打开
com.lyxxxx.springbootstudy.SpringbootstudyApplication
,并点击运行 - 使用自带服务
IDEA
自带REST Client
测试(Tools->Http Client->Test RESTFul Service),或者其他任意工具,看到返回hello
就成功了
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。