Browse Source

Update spring-boot 2.4.2 , update config

2.1.1
shengzhaoli.shengz 3 years ago
parent
commit
a9f4e6ef7a
  1. 2
      src/main/java/com/monkeyk/sos/config/JWTTokenStoreConfiguration.java
  2. 2
      src/main/java/com/monkeyk/sos/config/JdbcTokenStoreConfiguration.java

2
src/main/java/com/monkeyk/sos/config/JWTTokenStoreConfiguration.java

@ -5,6 +5,7 @@ import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.security.oauth2.provider.ClientDetailsService;
import org.springframework.security.oauth2.provider.token.DefaultAccessTokenConverter;
import org.springframework.security.oauth2.provider.token.DefaultTokenServices;
@ -70,6 +71,7 @@ public class JWTTokenStoreConfiguration {
@Bean
@Primary
public DefaultTokenServices tokenServices(TokenStore tokenStore, JwtAccessTokenConverter tokenEnhancer, ClientDetailsService clientDetailsService) {
DefaultTokenServices tokenServices = new DefaultTokenServices();
tokenServices.setTokenStore(tokenStore);

2
src/main/java/com/monkeyk/sos/config/JdbcTokenStoreConfiguration.java

@ -3,6 +3,7 @@ package com.monkeyk.sos.config;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.security.oauth2.provider.ClientDetailsService;
import org.springframework.security.oauth2.provider.token.DefaultTokenServices;
import org.springframework.security.oauth2.provider.token.TokenStore;
@ -36,6 +37,7 @@ public class JdbcTokenStoreConfiguration {
@Bean
@Primary
public DefaultTokenServices tokenServices(TokenStore tokenStore, ClientDetailsService clientDetailsService) {
DefaultTokenServices tokenServices = new DefaultTokenServices();
tokenServices.setTokenStore(tokenStore);

Loading…
Cancel
Save