上一页 1 2 3 4 5 6 7 8 9 ··· 50 下一页

PKI - 加密模式

摘要: https://blog.csdn.net/hpu11/article/details/108198389?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-0.no 阅读全文
posted @ 2021-11-26 16:29 TrustNature 阅读(32) 评论(0) 推荐(0) 编辑

es - mapping 分析

摘要: https://www.jianshu.com/p/320906e812af https://www.cnblogs.com/sanduzxcvbnm/p/12177377.html https://www.cnblogs.com/candlia/p/11920031.html http://www 阅读全文
posted @ 2021-11-24 15:52 TrustNature 阅读(13) 评论(0) 推荐(0) 编辑

OAuth2.0 - 授权码模式源码分析

摘要: 1、客户端跳转至用户授权页面 http://localhost:53010/uaa/oauth/authorize?response_type=code&client_id=heima_two 后台:AuthorizationEndpoint 接收请求 其中根据client_id获取客户端信息: 然 阅读全文
posted @ 2021-11-17 14:44 TrustNature 阅读(323) 评论(0) 推荐(0) 编辑

SpringSecurity - JWT Token微服务认证方案 SSO

摘要: 微服务权限认证方案:SpringBoot + SpringSecurity + JWT 如果系统的模块众多,每个模块都需要进行授权认证,所以我们选择基于Token的形式进行授权与认证,用户根据用户名密码认证成功,然后获取当前用户角色的一系列权限值,并以用户名为Key,权限列表为Value的形式存入r 阅读全文
posted @ 2021-11-15 10:50 TrustNature 阅读(348) 评论(0) 推荐(0) 编辑

SpringSecurity - RememberMe

摘要: SpringSecurity 记住我原理: 一、创建token 进入UsernamePasswordAuthticationFilter进行用户信息验证,验证成功之后它会调用一个AbstractAuthenticationProcessingFilter的过滤器进入一个successfulAuthe 阅读全文
posted @ 2021-11-09 11:57 TrustNature 阅读(58) 评论(0) 推荐(0) 编辑

SpringSecurity - 自定义认证方式

摘要: 背景:支持其他登录方案例如证书登录 放行/login,自定义登录验证方式。 一、模板 @Configuration public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void 阅读全文
posted @ 2021-11-05 09:58 TrustNature 阅读(861) 评论(0) 推荐(0) 编辑

Vue - nextTick()

摘要: 背景: 列表点查询后,根据后台数据更新复选框为选中状态不生效。 toggleRowSelection 设置无效。 getList(this.queryList).then(response=>{ this.list = response.rows; for (var i = 0; i < this. 阅读全文
posted @ 2021-11-04 16:14 TrustNature 阅读(34) 评论(0) 推荐(0) 编辑

OAuth2.0 - 重要概念

摘要: OAuth2协议,定义了一套用户、第三方服务和存储着用户数据的平台之间的交互规则,可以使得用户无需将自己的用户名和密码暴露给第三方,即可使第三方应用获取用户在该平台上的数据,最常见的场景便是现在互联网上的各种使用XXX账号登录。 OAuth2协议中角色介绍 resource owner(资源所有者, 阅读全文
posted @ 2021-11-03 16:51 TrustNature 阅读(46) 评论(0) 推荐(0) 编辑

OAuth2.0 - 微服务认证方案

摘要: 微服务方案: 网关作用: 本身使用OAuth2.0 做权限防护,然后对于后端服务做粗粒度Scope鉴权,所有鉴权通过后,将令牌进行解密,并自定义内容格式和加密方式传递给后台。 @Configuration public class ResouceServerConfig { public stati 阅读全文
posted @ 2021-11-03 16:47 TrustNature 阅读(242) 评论(0) 推荐(0) 编辑

SpringSecurity - filter

摘要: https://blog.csdn.net/caplike/article/details/106144789 https://blog.csdn.net/u012702547/article/details/89629415 阅读全文
posted @ 2021-10-19 17:14 TrustNature 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 50 下一页