RESTful API
Evan_Gu
专注大数据可视化和可视分析相关的理论、方法与技术,探索行业中最佳实践与应用。
展开
-
4种认证(authentication)或授权(authorization)方式
Authentication vs. authorizationIt is easy to confuse authentication with another element of the security plan: authorization. While authentication verifies the user’s identity, authorization verifie...原创 2018-04-12 11:05:09 · 88780 阅读 · 1 评论 -
【Spring Swagger】5分钟上手swagger
1 简介当我们在创建REST API时,需要有清晰的API说明文档,用于提供开发人员阅读和使用API。然而,在开发过程中每次更新API,需要同步更新API文档,这无疑是加重了开发工作量。Swagger是一个用于快速构建API文档的工具,可以自己从代码中生成API说明文档。下面将一步步描述如何向spring REST web service项目中引入swagger。2 新建Sprin...原创 2018-05-26 21:25:32 · 988 阅读 · 1 评论