前言
众所周知,spring-security默认是form表单模式登录的,故我们只要在前端用表单提交即可,回顾我上次umi前端请求处理,代码如下
原创大约 2 分钟
众所周知,spring-security默认是form表单模式登录的,故我们只要在前端用表单提交即可,回顾我上次umi前端请求处理,代码如下
上一篇文章已经搭好了基本框架,现在进行spring-security结合的讲解
上面一张图是我基于debug模式跑的,有什么不足的地方,请多多指正。
先向大家介绍几个框架的作用,提供官网地址,方便大家详细了解。
在进行走refresh_token的时候需要UserDetailsService
具体代码
@Autowired
private UserDetailsService userDetailsServiceBean;
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
endpoints.tokenStore(tokenStore()).userDetailsService(userDetailsServiceBean);
}
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-oauth2</artifactId>
</dependency>