摘要: 一、 访问控制 url 匹配制 在前面讲解了认证中所有常用配置,主要是对 http.formLogin()进行操作。而在配置类中 http.authorizeRequests()主要是对 url 进行控制,也就是我们所说的授权(访问控制)。http.authorizeRequests()也支持连缀写 阅读全文
posted @ 2022-04-30 23:30 KwFruit 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 要想调到项目外部的链接该如何做 1 源码解析 一、点击successForwardUrl 二、在FormLoginConfigurer里面发现 用successHandler()这个方法做的跳转 三、点进ForwardAuthenticationSuccessHandler 发现 其实现了Authe 阅读全文
posted @ 2022-04-30 23:25 KwFruit 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 1 SecurityConfig配置类 package com.mangoubiubiu.security.config; import org.springframework.context.annotation.Bean; import org.springframework.context.a 阅读全文
posted @ 2022-04-30 23:22 KwFruit 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1、将BCryptPasswordEncoder 注入到ioc容器里面 package com.mangoubiubiu.security.config; import org.springframework.context.annotation.Bean; import org.springfra 阅读全文
posted @ 2022-04-30 23:20 KwFruit 阅读(116) 评论(0) 推荐(0) 编辑
摘要: PasswordEncoder接口 PasswordEncoder是一个密码解析器 Spring Security封装了如bcrypt, PBKDF2, scrypt, Argon2等主流适应性单向加密方法( adaptive one-way functions),用以进行密码存储和校验。单向校验安 阅读全文
posted @ 2022-04-30 23:18 KwFruit 阅读(226) 评论(0) 推荐(0) 编辑