postgresql - Provide me samples on Spring Security OAuth2.0 Jdbc token store for potgresql -
im new spring security oauth2. please provide me samples on spring security oauth2 jdbc token store postgresql.give samples above requirement understand spring security oauth2 jdbc token store.thanks in advance.
you can find db schema here. add support code can create bean:
@bean public tokenstore tokenstore() { return new jdbctokenstore(datasource); }
and postgresql use bytea type instead of longvarbinary
Comments
Post a Comment