spring cloud 搭建oauth2授權服務 使用redis存儲令牌


依賴

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-oauth2</artifactId>
</dependency>

配置文件

spring:
  application:
    name: oauth2-server
  redis:
    host: localhost
    port: 6379
    database: 1
server:
  port: 80

TokenStore

@Configuration
public class RedisTokenStoreConfig {
    @Bean
    public TokenStore redisTokenStore(RedisConnectionFactory redisConnectionFactory) {
        return new RedisTokenStore(redisConnectionFactory);
    }
}

WebSecuritry

@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
 	@Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                // 登陸頁
                .formLogin().permitAll()
                // 登出頁
                .and().logout().logoutUrl("/logout").logoutSuccessUrl("/")
                // 其余所有請求全部需要鑒權認證
                .and().authorizeRequests().anyRequest().authenticated()
                // 關閉csrf
                .and().csrf().disable();
    }
    
    @Bean
    public PasswordEncoder passwordEncoder() {
        return NoOpPasswordEncoder.getInstance();// new BCryptPasswordEncoder();
    }

    @Bean
    @Override
    public AuthenticationManager authenticationManagerBean() throws Exception {
        return super.authenticationManagerBean();
    }
    
	@Bean
    public UserDetailsService userDetailsService() {
        return new UserDetailsServiceImpl();
    }

    public static class UserDetailsServiceImpl implements UserDetailsService {

        @Override
        public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
           ...
        }
    }
}

AuthorizationServer

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
    AuthenticationManager authenticationManager;
    PasswordEncoder passwordEncoder;
    ClientRepository clientRepo;
    TokenStore redisTokenStore;

    public AuthorizationServerConfig(AuthenticationManager authenticationManager,
                                     PasswordEncoder passwordEncoder,
                                     ClientRepository clientRepo,
                                     TokenStore redisTokenStore
    ) {
        this.authenticationManager = authenticationManager;
        this.passwordEncoder = passwordEncoder;
        this.clientRepo = clientRepo;
        this.redisTokenStore = redisTokenStore;
    }


    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
    	// 集成websecurity認證
        endpoints.authenticationManager(authenticationManager);
        // 注冊redis令牌倉庫
        endpoints.tokenStore(redisTokenStore);
    }

    @Override
    public void configure(AuthorizationServerSecurityConfigurer security) throws Exception {
    	// 允許通過form提交客戶端認證信息(client_id,client_secret),默認為basic方式認證
        security.allowFormAuthenticationForClients();
        // "/oauth/check_token"端點默認不允許訪問
        security.checkTokenAccess("isAuthenticated()");
        // "/oauth/token_key"斷點默認不允許訪問
        security.tokenKeyAccess("isAuthenticated()");
        // 配置密碼編碼器
        security.passwordEncoder(passwordEncoder);
    }

    @Override
    public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
    	// 注冊自定義客戶端信息服務
        clients.withClientDetails(new ClientDetailsServiceImpl(clientRepo));
    }

    public static class ClientDetailsServiceImpl implements ClientDetailsService {

        @Override
        public ClientDetails loadClientByClientId(String clientId) throws ClientRegistrationException {
            // 實現客戶端信息查詢邏輯
        }
    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM