spring-boot-security-oauth2-google icon indicating copy to clipboard operation
spring-boot-security-oauth2-google copied to clipboard

un-initialized final variables

Open alosharma opened this issue 3 years ago • 0 comments

In class OAuthSecurityConfig, below three variables are not initialized and throwing  errors:

private final OAuth2ClientContext oauth2ClientContext;
private final AuthorizationCodeResourceDetails authorizationCodeResourceDetails;
private final ResourceServerProperties resourceServerProperties;

=> The blank final field oauth2ClientContext may not have been initialized
=> The blank final field authorizationCodeResourceDetails may not have been initialized
=> The blank final field resourceServerProperties may not have been initialized    

alosharma avatar Mar 14 '21 09:03 alosharma