Spring Cloud Security OAuth2.0入門: AuthorizationServer搭建(一)

最近在學習微服務相關的知識及各類框架的使用,在搭建的過程當中,遇到了很多問題,可是都沒有記錄下來,致使過一段時間後,就沒有什麼印象了.. 因此決定在掘金寫文章。 一是爲了記錄本身在寫代碼過程當中的知識點以及解決的問題,方便查閱; 二是爲了能與其它朋友一塊兒討論,能夠吸取不一樣思想及不一樣方案,擴展思路。html

標題之因此爲Spring Cloud Security,是由於想要寫Spring Cloud相關的一系列技術。而Spring Cloud依賴Springbootsecurity仍是Spring Security模塊的東西,本質上沒有太大的區別。git

在寫的過程當中,遇到本身不熟悉或沒有把握的概念及知識,會謹慎的求證。也會盡可能保證發佈的任何代碼都是可運行的。 可是因爲本身技術能力有限,不免會有錯誤,包括但不限於拼寫錯誤代碼錯誤有代碼潔癖的人看着縮進不舒服概念理解有誤差代碼不夠優雅等等,但願各位能夠不吝指教,不喜勿噴~github

知識儲備

阮一峯老師的OAuth2.0介紹web

新建microservice,做爲全部服務的parent, 同時引入依賴

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.5.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
    <spring.cloud.dependencies.version>Greenwich.RELEASE</spring.cloud.dependencies.version>
    <spring-security-oauth2-autoconfigure.version>2.1.5.RELEASE</spring-security-oauth2-autoconfigure.version>
</properties>
<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring.cloud.dependencies.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.springframework.security.oauth.boot</groupId>
                <artifactId>spring-security-oauth2-autoconfigure</artifactId>
                <version>${spring-security-oauth2-autoconfigure.version}</version>
            </dependency>
        </dependencies>
</dependencyManagement>
複製代碼

新建uaa-service,做爲認證受權服務,引入依賴

<dependencies>
    <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>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.security.oauth.boot</groupId>
                <artifactId>spring-security-oauth2-autoconfigure</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework.security.oauth.boot</groupId>
        <artifactId>spring-security-oauth2-autoconfigure</artifactId>
        <version>2.1.5.RELEASE</version>
    </dependency>
</dependencies>
複製代碼

spring-cloud-starter-oauth2這個依賴應該已經包含了spring security相關的jar,可是 spring-cloud-dependencies版本爲Greenwich.RELEASE時,spring-security-oauth2-autoconfigure子module中引入的版本一直是2.1.0.M4,不論是從新import仍是刪除本地maven repository都無論用, 在官方的issue中也有人遇到的相同的問題, 因此以上依賴暫時使用單獨引入spring-security-oauth2-autoconfigureversion還必須在子module中指定,不知大家是否也碰到這種問題.spring

Authorization Server 配置

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfiguration extends AuthorizationServerConfigurerAdapter {

	@Autowired
	private AuthenticationManager authenticationManager;

	@Autowired
	private PasswordEncoder passwordEncoder;

	@Override
	public void configure(AuthorizationServerSecurityConfigurer security) throws Exception {
		super.configure(security);
	}

	@Override
	public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
		clients.inMemory()
				.withClient("client-id")
				.secret(passwordEncoder.encode("client-secret"))
				.scopes("read", "write")
				.authorizedGrantTypes("password", "refresh_token")
				.authorities("user:view");
	}

	@Override
	public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
		endpoints
			.authenticationManager(authenticationManager)
			.tokenStore(tokenStore());
	}

	@Bean
	public TokenStore tokenStore() {
		return new InMemoryTokenStore();
	}
}
複製代碼
  • 使用@EnableAuthorizationServer註解告訴Spring激活authorization server
  • 同時@Configuration註解的實現了AuthorizationServerConfigurer接口的類代表這是一個authorization server配置類。
  • 這裏使用的AuthorizationServerConfigurerAdapterSpring提供的默認實現AuthorizationServerConfigurer接口的類,裏面都是空方法
  • 注入authenticationManager,這是Spring默認提供的,若是須要使用password模式,必須顯示地配置endpoints.authenticationManager(authenticationManager)
  • 通常項目中密碼之類的字段都不會使用明文加密, 因此這裏注入passwordEncoder,用於用戶登陸時密碼校驗以及建立用戶時密碼的加密
  • tokenStore這裏暫時使用InMemoryTokenStore,Spring同時也提供了以下幾種存儲token方式
  • ClientDetailsServiceConfigurer是配置authorization server頒發的client的憑證
    • client.inMemory()是在內存中存儲client信息
    • withClientsecret是client的usernamepassword
    • scopes是受權範圍,例如該client能夠進行讀和寫
    • authorizedGrantTypes是配置受權方式, 能夠是OAuth2.0中支持的方式,也能夠是自定義的

配置用戶

@Configuration
@EnableGlobalMethodSecurity(proxyTargetClass = true, prePostEnabled = true)
public class WebSecurityConfiguration extends WebSecurityConfigurerAdapter {

	@Override
	protected void configure(AuthenticationManagerBuilder auth) throws Exception {
		auth
		    .inMemoryAuthentication()
		    .withUser("admin")
		    .password(passwordEncoder().encode("password"))
		    .roles("ADMIN");
	}

	@Bean
	public BCryptPasswordEncoder passwordEncoder() {
		return new BCryptPasswordEncoder();
	}

	@Bean
	@Override
	public AuthenticationManager authenticationManagerBean() throws Exception {
		return super.authenticationManagerBean();
	}
}
複製代碼
  • @EnableGlobalMethodSecurity(proxyTargetClass = true, prePostEnabled = true)開啓方法級別權限驗證
  • AuthenticationManagerBuilder在內存中配置一個用戶,用於password模式獲取token
  • BCryptPasswordEncoder配置加密實現類

獲取token

以上項目啓動完成以後,啓動項目,spring security會爲咱們提供幾個endpoint, 其中一個就是獲取token的: /oauth/token。使用的http請求工具是postmanbash

如上圖所示,輸入以後,會把以前配置的clientusernamepasswordbase64編碼放在http header服務器

http body中輸入框架

發送請求以後,獲得響應, 其中的access_token就是咱們後續請求接口使用的令牌maven

總結

以上就是利用spring security簡單地搭建authorization server, 能夠看到仍是蠻方便的。可是若是是用在生產環境,還遠不夠,例如用戶信息、client信息、token信息的持久化,各類異常的處理,資源服務器的配置等等,在後續的文章也會不斷的完善,感謝!ide

相關文章
相關標籤/搜索