-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# JsonSoup | ||
解析json数据。多重嵌套json数据 | ||
# swagger-json-to-csv | ||
该工具适用于swagger生成的页面中对应的api-docs。 | ||
将api-docs的json内容导入到项目根目录下的1.txt,运行后结果导出为result.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
account-resource,get,/api/account,OK | ||
,post,/api/account,userDTO | ||
,post,/api/account/change-password,passwordChangeDto | ||
,post,/api/account/reset-password/finish,keyAndPassword | ||
,post,/api/account/reset-password/init,mail | ||
,get,/api/activate,key | ||
,get,/api/authenticate,OK | ||
,post,/api/register,managedUserVM | ||
employee-resource,get,/api/employees,OK | ||
,post,/api/employees,employee | ||
,put,/api/employees,employee | ||
,get,/api/employees/{id},id | ||
,delete,/api/employees/{id},id | ||
user-jwt-controller,post,/api/authenticate,loginVM | ||
user-resource,get,/api/users,Page number of the requested page | ||
,post,/api/users,userDTO | ||
,put,/api/users,userDTO | ||
,get,/api/users/authorities,OK | ||
,get,/api/users/{login:^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$},login | ||
,delete,/api/users/{login:^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$},login |