NyanMps / SecurityExample

SpringSecurity练习工程
1 stars 0 forks source link

配置刷新token相关问题 #2

Open bfchengnuo opened 4 years ago

bfchengnuo commented 4 years ago

在 passwod 模式下,执行刷新 token 时,抛出异常:

Handling error: IllegalStateException, UserDetailsService is required.

解决方案:

需要新建一个配置类(参考 CustomizeAuthorizationServerConfig)继承 AuthorizationServerConfigurerAdapter ,覆盖 public void configure(AuthorizationServerEndpointsConfigurer endpoints) 方法,然后设置 userDetailsService 即可(当然也需要配置其他的必要对象)

参考:https://blog.csdn.net/hry2015/article/details/96380624