Add jackson module for authorization server

Fixes problems with serialization of complex attribute values of various framework types such as OAuth2AuthorizationRequest and OAuth2ClientAuthenticationToken.

Closes gh-324
Closes gh-328
This commit is contained in:
Steve Riesenberg
2021-06-24 14:16:18 -05:00
committed by Steve Riesenberg
parent 67e62a2f21
commit 232b3b7ac6
12 changed files with 523 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ CREATE TABLE oauth2_authorization (
registered_client_id varchar(100) NOT NULL,
principal_name varchar(200) NOT NULL,
authorization_grant_type varchar(100) NOT NULL,
attributes varchar(1000) DEFAULT NULL,
attributes varchar(4000) DEFAULT NULL,
state varchar(1000) DEFAULT NULL,
authorization_code_value blob DEFAULT NULL,
authorization_code_issued_at timestamp DEFAULT NULL,