|
@ -1,8 +1,23 @@
|
|
|
package com.yihu.base.security;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
import org.springframework.data.redis.connection.RedisConnectionFactory;
|
|
|
import org.springframework.security.authentication.AuthenticationManager;
|
|
|
import org.springframework.security.core.token.TokenService;
|
|
|
import org.springframework.security.core.userdetails.UserDetailsService;
|
|
|
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
|
|
import org.springframework.security.crypto.password.PasswordEncoder;
|
|
|
import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer;
|
|
|
import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter;
|
|
|
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer;
|
|
|
import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerEndpointsConfigurer;
|
|
|
import org.springframework.security.oauth2.provider.ClientDetailsService;
|
|
|
import org.springframework.security.oauth2.provider.token.TokenStore;
|
|
|
import org.springframework.security.oauth2.provider.token.store.redis.RedisTokenStore;
|
|
|
|
|
|
import javax.sql.DataSource;
|
|
|
|
|
|
/**
|
|
|
* Created by chenweida on 2017/12/4.
|
|
@ -10,4 +25,36 @@ import org.springframework.security.oauth2.config.annotation.web.configuration.E
|
|
|
@Configuration
|
|
|
@EnableAuthorizationServer //开启授权服务器
|
|
|
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {
|
|
|
@Autowired
|
|
|
private AuthenticationManager authenticationManager;
|
|
|
@Autowired
|
|
|
private UserDetailsService userDetailsService;
|
|
|
@Autowired
|
|
|
private ClientDetailsService clientDetailsService;
|
|
|
@Autowired
|
|
|
private DataSource dataSource;
|
|
|
@Autowired
|
|
|
private RedisConnectionFactory redisConnectionFactory;
|
|
|
@Autowired
|
|
|
private PasswordEncoder passwordEncoder;
|
|
|
|
|
|
|
|
|
@Override
|
|
|
public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
|
|
|
endpoints.authenticationManager(authenticationManager)
|
|
|
.userDetailsService(userDetailsService)
|
|
|
.tokenStore(tokenStore());
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
|
|
|
clients.jdbc(dataSource).passwordEncoder(passwordEncoder).clients(clientDetailsService);
|
|
|
}
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
TokenStore tokenStore() {
|
|
|
RedisTokenStore redisTokenStore = new RedisTokenStore(redisConnectionFactory);
|
|
|
return redisTokenStore;
|
|
|
}
|
|
|
}
|