1

jdbcAuthorizationCodeService を適切に構成するにはどうすればよいですか?

だからここに私の設定の要点があります

  @Override
        public void configure(AuthorizationServerEndpointsConfigurer endpoints)
                throws Exception {
            endpoints
                    .tokenStore(this.tokenStore)
                    .authenticationManager(this.authenticationManager)
                    .authorizationCodeServices(this.jdbcAuthorizationCodeServices).userApprovalHandler(new DefaultUserApprovalHandler());
        }

私のテーブルはこのように構成されています

ここに画像の説明を入力

私の質問はです。認証列のサンプル値は何ですか? 春のoauth2で要求されるように、それはbyteaなので

4

1 に答える 1