如何正确配置我的 jdbcAuthorizationCodeService?
所以这是我的配置要点
@Override
public void configure(AuthorizationServerEndpointsConfigurer endpoints)
throws Exception {
endpoints
.tokenStore(this.tokenStore)
.authenticationManager(this.authenticationManager)
.authorizationCodeServices(this.jdbcAuthorizationCodeServices).userApprovalHandler(new DefaultUserApprovalHandler());
}
我的桌子是这样构造的
我的问题是。身份验证列的样本值应该是什么?因为它是 bytea,根据 spring oauth2 的要求