1 Star 0 Fork 17

ShaoFan / spring-boot-restful

forked from jackblues / spring-boot-restful 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.md 1.12 KB
一键复制 编辑 原始数据 按行查看 历史

Spring Boot Example

This is a basic example of how to use Kotlin in a Spring Boot application. See the accompanying tutorial for more information.

Github

To run:

$ gradle bootRun

Api request flow

对验证接口发起一个post请求,header 带上Username和Password

POST http://localhost:8080/api/v1/authenticate

add header
X-Auth-Username:user
X-Auth-Password:password

得到token,这里的message

{
"status": 200,
"message": "MTUwMDYzMjE2OTM0NGY0ZjQwMDk5NzMwYzQwNTdhNGZhM2U3ZTY5ZDIxNWJk"
}

最后请求其他接口的时候,在header带上这个token,且输入和输出参数类型都是content-type:application/json

GET  http://localhost:8080/api/v1/users/1?page=1
add header
X-Authorization:MTUwMDYzMjE2OTM0NGY0ZjQwMDk5NzMwYzQwNTdhNGZhM2U3ZTY5ZDIxNWJk

Features

  • restful 风格api举例
  • Token 身份验证,token过期处理,使用过滤器
  • 方法级别权限控制api接口
  • 处理异常,自定义返回结果
  • servlet异步响应
  • model数据处理
Kotlin
1
https://gitee.com/alexyang/spring-boot-restful.git
git@gitee.com:alexyang/spring-boot-restful.git
alexyang
spring-boot-restful
spring-boot-restful
master

搜索帮助