五分钟带你玩转oauth2(十二)重写源码,定制oauth2+spring security的token

    五分钟带你玩转oauth2(十二)重写源码,定制oauth2+spring security的token

@Configuration
@EnableAuthorizationServer // 开启了认证服务器
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
 
    /**
     * token管理方式,在TokenConfig类中已对添加到容器中了
     */
    @Autowired
    private TokenStore tokenStore;
 
    @Bean
    public TokenEnhancer tokenEnhancer() {
        return new CustomTokenEnhancer();
    }
 
    /**
     * 关于认证服务器端点配置
     * 
     * @param endpoints
     * @throws Except
上一篇:每个 Android 开发者应该知道的 6 个 SDK 和 API


下一篇:Kubernetes(六) - Secret和私有仓库认证