一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - Spring Security OAuth 個性化token的使用

Spring Security OAuth 個性化token的使用

2021-07-16 14:45冷冷 Java教程

這篇文章主要介紹了Spring Security OAuth 個性化token的使用,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

個性化token 目的

默認通過調用 /oauth/token 返回的報文格式包含以下參數

?
1
2
3
4
5
6
7
{
 "access_token": "e6669cdf-b6cd-43fe-af5c-f91a65041382",
 "token_type": "bearer",
 "refresh_token": "da91294d-446c-4a89-bdcf-88aee15a75e8",
 "expires_in": 43199,
 "scope": "server"
}

并沒包含用戶的業(yè)務信息比如用戶信息、租戶信息等。

擴展生成包含業(yè)務信息(如下),避免系統多次調用,直接可以通過認證接口獲取到用戶信息等,大大提高系統性能

?
1
2
3
4
5
6
7
8
9
10
11
12
{
 "access_token":"a6f3b6d6-93e6-4eb8-a97d-3ae72240a7b0",
 "token_type":"bearer",
 "refresh_token":"710ab162-a482-41cd-8bad-26456af38e4f",
 "expires_in":42396,
 "scope":"server",
 "tenant_id":1,
 "license":"made by pigx",
 "dept_id":1,
 "user_id":1,
 "username":"admin"
}

密碼模式生成token 源碼解析

Spring Security OAuth 個性化token的使用

? 主頁參考紅框部分

resourceownerpasswordtokengranter (密碼模式)根據用戶的請求信息,進行認證得到當前用戶上下文信息

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
protected oauth2authentication getoauth2authentication(clientdetails client, tokenrequest tokenrequest) {
 map<string, string> parameters = new linkedhashmap<string, string>(tokenrequest.getrequestparameters());
 string username = parameters.get("username");
 string password = parameters.get("password");
 // protect from downstream leaks of password
 parameters.remove("password");
 authentication userauth = new usernamepasswordauthenticationtoken(username, password);
 ((abstractauthenticationtoken) userauth).setdetails(parameters);
  
 userauth = authenticationmanager.authenticate(userauth);
 
 oauth2request storedoauth2request = getrequestfactory().createoauth2request(client, tokenrequest); 
  return new oauth2authentication(storedoauth2request, userauth);
}

然后調用abstracttokengranter.getaccesstoken() 獲取oauth2accesstoken

?
1
2
3
protected oauth2accesstoken getaccesstoken(clientdetails client, tokenrequest tokenrequest) {
 return tokenservices.createaccesstoken(getoauth2authentication(client, tokenrequest));
}

默認使用defaulttokenservices來獲取token

?
1
2
3
4
5
6
7
8
9
10
11
12
public oauth2accesstoken createaccesstoken(oauth2authentication authentication) throws authenticationexception {
 
 ... 一系列判斷 ,合法性、是否過期等判斷
 oauth2accesstoken accesstoken = createaccesstoken(authentication, refreshtoken);
  tokenstore.storeaccesstoken(accesstoken, authentication);
  // in case it was modified
  refreshtoken = accesstoken.getrefreshtoken();
  if (refreshtoken != null) {
   tokenstore.storerefreshtoken(refreshtoken, authentication);
  }
  return accesstoken;
}

createaccesstoken 核心邏輯

?
1
2
3
4
5
6
7
8
9
10
11
12
// 默認刷新token 的有效期
private int refreshtokenvalidityseconds = 60 * 60 * 24 * 30; // default 30 days.
// 默認token 的有效期
private int accesstokenvalidityseconds = 60 * 60 * 12; // default 12 hours.
 
private oauth2accesstoken createaccesstoken(oauth2authentication authentication, oauth2refreshtoken refreshtoken) {
 defaultoauth2accesstoken token = new defaultoauth2accesstoken(uuid);
 token.setexpiration(date)
 token.setrefreshtoken(refreshtoken);
 token.setscope(authentication.getoauth2request().getscope());
 return accesstokenenhancer != null ? accesstokenenhancer.enhance(token, authentication) : token;
}

如上代碼,在拼裝好token對象后會調用認證服務器配置tokenenhancer( 增強器) 來對默認的token進行增強。

tokenenhancer.enhance 通過上下文中的用戶信息來個性化token

?
1
2
3
4
5
6
7
8
9
10
11
public oauth2accesstoken enhance(oauth2accesstoken accesstoken, oauth2authentication authentication) {
 final map<string, object> additionalinfo = new hashmap<>(8);
 pigxuser pigxuser = (pigxuser) authentication.getuserauthentication().getprincipal();
 additionalinfo.put("user_id", pigxuser.getid());
 additionalinfo.put("username", pigxuser.getusername());
 additionalinfo.put("dept_id", pigxuser.getdeptid());
 additionalinfo.put("tenant_id", pigxuser.gettenantid());
 additionalinfo.put("license", securityconstants.pigx_license);
 ((defaultoauth2accesstoken) accesstoken).setadditionalinformation(additionalinfo);
 return accesstoken;
}

基于pig 看下最終的實現效果

pig 基于spring cloud、oauth2.0開發(fā)基于vue前后分離的開發(fā)平臺,支持賬號、短信、sso等多種登錄,提供配套視頻開發(fā)教程。

https://gitee.com/log4j/pig

Spring Security OAuth 個性化token的使用

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:https://segmentfault.com/a/1190000018187384

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲高清视频在线观看 | 四虎影视在线永久免费观看 | 亚洲欧美日韩在线观看看另类 | 91制片厂 果冻传媒 天美传媒 | 亚洲swag精品自拍一区 | 亚洲图片二区 | 猛男壮男受bl爽哭了高h | 欧美最猛性xxxxx男男 | 女教师被学生糟蹋三天 | 欧美国产日韩在线播放 | 娇妻在床上迎合男人 | 欧美视频一区二区三区在线观看 | www.精品在线| 大团圆免费阅读全文 | 青草草视频在线观看 | 欧美一级高清片免费一级 | 大学生初次破苞免费视频 | 共妻高h | 久久88综合 | 国产专区一va亚洲v天堂 | 韩国三级年轻小的胰子完整 | 欧美夫妇野外交换hd高清版 | 四虎影在线永久免费观看 | 色欧美在线 | 女子监狱第二季在线观看免费完整版 | 九色PORNY蝌蚪视频首页 | 国产无限免费观看黄网站 | 欧美一区二区三区四区视频 | 九九九九九热 | 久久久精品日本一区二区三区 | 精品视频在线观看免费 | 99热这里只有精品在线 | 精品久久久久久久久免费影院 | 亚洲精品国产精品麻豆99 | 无人区在线观看免费国语完整版 | 亚洲春黄在线观看 | 欧美一级片免费在线观看 | 国产欧美日韩不卡 | 武侠古典久久亚洲精品 | 国产精品视频在这里有精品 | 国产肥女bbwbbw |