当前位置:   article > 正文

Spring Cloud OAuth2 实现用户认证及单点登录_spring cloud2021 整合oauth2 单点登录

spring cloud2021 整合oauth2 单点登录

OAuth 2 有四种授权模式,分别是授权码模式(authorization code)、简化模式(implicit)、密码模式(resource owner password credentials)、客户端模式(client credentials),具体 OAuth2 是什么,可以参考这篇文章。(理解OAuth 2.0 - 阮一峰的网络日志)

本文我们将使用授权码模式和密码模式两种方式来实现用户认证和授权管理。

OAuth2 其实是一个关于授权的网络标准,它制定了设计思路和运行流程,利用这个标准我们其实是可以自己实现 OAuth2 的认证过程的。今天要介绍的 spring-cloud-starter-oauth2 ,其实是 Spring Cloud 按照 OAuth2 的标准并结合 spring-security 封装好的一个具体实现。

什么情况下需要用 OAuth2

首先大家最熟悉的就是几乎每个人都用过的,比如用微信登录、用 QQ 登录、用微博登录、用 Google 账号登录、用 github 授权登录等等,这些都是典型的 OAuth2 使用场景。假设我们做了一个自己的服务平台,如果不使用 OAuth2 登录方式,那么我们需要用户先完成注册,然后用注册号的账号密码或者用手机验证码登录。而使用了 OAuth2 之后,相信很多人使用过、甚至开发过公众号网页服务、小程序,当我们进入网页、小程序界面,第一次使用就无需注册,直接使用微信授权登录即可,大大提高了使用效率。因为每个人都有微信号,有了微信就可以马上使用第三方服务,这体验不要太好了。而对于我们的服务来说,我们也不需要存储用户的密码,只要存储认证平台返回的唯一ID 和用户信息即可。

以上是使用了 OAuth2 的授权码模式,利用第三方的权威平台实现用户身份的认证。当然了,如果你的公司内部有很多个服务,可以专门提取出一个认证中心,这个认证中心就充当上面所说的权威认证平台的角色,所有的服务都要到这个认证中心做认证。

这样一说,发现没,这其实就是个单点登录的功能。这就是另外一种使用场景,对于多服务的平台,可以使用 OAuth2 实现服务的单点登录,只做一次登录,就可以在多个服务中自由穿行,当然仅限于授权范围内的服务和接口。

实现统一认证功能

本篇先介绍密码模式实现的单点登录,下一篇再继续说授权码模式。

在微服务横行的今天,谁敢说自己手上没几个微服务。微服务减少了服务间的耦合,同时也在某些方面增加了系统的复杂度,比如说用户认证。假设我们这里实现了一个电商平台,用户看到的就是一个 APP 或者一个 web 站点,实际上背后是由多个独立的服务构成的,比如用户服务、订单服务、产品服务等。用户只要第一次输入用户名、密码完成登录后,一段时间内,都可以任意访问各个页面,比如产品列表页面、我的订单页面、我的关注等页面。

我们可以想象一下,自然能够想到,在请求各个服务、各个接口的时候,一定携带着什么凭证,然后各个服务才知道请求接口的用户是哪个,不然肯定有问题,那其实这里面的凭证简单来说就是一个 Token,标识用户身份的 Token。

系统架构说明

认证中心:oauth2-auth-server,OAuth2 主要实现端,Token 的生成、刷新、验证都在认证中心完成。

订单服务:oauth2-client-order-server,微服务之一,接收到请求后会到认证中心验证。

用户服务:oauth2-client-user-server,微服务之二,接收到请求后会到认证中心验证。

客户端:例如 APP 端、web 端 等终端

上图描述了使用了 OAuth2 的客户端与微服务间的请求过程。大致的过程就是客户端用用户名和密码到认证服务端换取 token,返回给客户端,客户端拿着 token 去各个微服务请求数据接口,一般这个 token 是放到 header 中的。当微服务接到请求后,先要拿着 token 去认证服务端检查 token 的合法性,如果合法,再根据用户所属的角色及具有的权限动态的返回数据。

创建并配置认证服务端

配置最多的就是认证服务端,验证账号、密码,存储 token,检查 token ,刷新 token 等都是认证服务端的工作。

1、引入需要的 maven 包

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>org.springframework.cloud</groupId>
  7. <artifactId>spring-cloud-starter-oauth2</artifactId>
  8. </dependency>
  9. <dependency>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-data-redis</artifactId>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-actuator</artifactId>
  16. </dependency>

spring-cloud-starter-oauth2包含了 spring-cloud-starter-security,所以不用再单独引入了。之所以引入 redis 包,是因为下面会介绍一种用 redis 存储 token 的方式。

2、配置好 application.yml

将项目基本配置设置好,并加入有关 redis 的配置,稍后会用到。

  1. spring:
  2. application:
  3. name: auth-server
  4. redis:
  5. database: 2
  6. host: localhost
  7. port: 32768
  8. password: 1qaz@WSX
  9. jedis:
  10. pool:
  11. max-active: 8
  12. max-idle: 8
  13. min-idle: 0
  14. timeout: 100ms
  15. server:
  16. port: 6001
  17. management:
  18. endpoint:
  19. health:
  20. enabled: true

3、spring security 基础配置

  1. @EnableWebSecurity
  2. public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
  3. @Bean
  4. public PasswordEncoder passwordEncoder() {
  5. return new BCryptPasswordEncoder();
  6. }
  7. @Bean
  8. @Override
  9. public AuthenticationManager authenticationManagerBean() throws Exception {
  10. return super.authenticationManagerBean();
  11. }
  12. /**
  13. * 允许匿名访问所有接口 主要是 oauth 接口
  14. * @param http
  15. * @throws Exception
  16. */
  17. @Override
  18. protected void configure(HttpSecurity http) throws Exception {
  19. http.authorizeRequests()
  20. .antMatchers("/**").permitAll();
  21. }
  22. }

使用@EnableWebSecurity注解修饰,并继承自WebSecurityConfigurerAdapter类。

这个类的重点就是声明 PasswordEncoderAuthenticationManager两个 Bean。稍后会用到。其中 BCryptPasswordEncoder是一个密码加密工具类,它可以实现不可逆的加密,AuthenticationManager是为了实现 OAuth2 的 password 模式必须要指定的授权管理 Bean。

4、实现 UserDetailsService

如果你之前用过 Security 的话,那肯定对这个类很熟悉,它是实现用户身份验证的一种方式,也是最简单方便的一种。另外还有结合 AuthenticationProvider的方式,有机会讲 Security 的时候再展开来讲吧。

UserDetailsService的核心就是 loadUserByUsername方法,它要接收一个字符串参数,也就是传过来的用户名,返回一个 UserDetails对象。

  1. @Slf4j
  2. @Component(value = "kiteUserDetailsService")
  3. public class KiteUserDetailsService implements UserDetailsService {
  4. @Autowired
  5. private PasswordEncoder passwordEncoder;
  6. @Override
  7. public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
  8. log.info("usernameis:" + username);
  9. // 查询数据库操作
  10. if(!username.equals("admin")){
  11. throw new UsernameNotFoundException("the user is not found");
  12. }else{
  13. // 用户角色也应在数据库中获取
  14. String role = "ROLE_ADMIN";
  15. List<SimpleGrantedAuthority> authorities = new ArrayList<>();
  16. authorities.add(new SimpleGrantedAuthority(role));
  17. // 线上环境应该通过用户名查询数据库获取加密后的密码
  18. String password = passwordEncoder.encode("123456");
  19. return new org.springframework.security.core.userdetails.User(username,password, authorities);
  20. }
  21. }
  22. }

这里为了做演示,把用户名、密码和所属角色都写在代码里了,正式环境中,这里应该是从数据库或者其他地方根据用户名将加密后的密码及所属角色查出来的。账号 admin ,密码 123456,稍后在换取 token 的时候会用到。并且给这个用户设置 "ROLE_ADMIN" 角色。

5、OAuth2 配置文件

创建一个配置文件继承自 AuthorizationServerConfigurerAdapter.

  1. @Configuration
  2. @EnableAuthorizationServer
  3. public class OAuth2Config extends AuthorizationServerConfigurerAdapter {
  4. @Autowired
  5. public PasswordEncoder passwordEncoder;
  6. @Autowired
  7. public UserDetailsService kiteUserDetailsService;
  8. @Autowired
  9. private AuthenticationManager authenticationManager;
  10. @Autowired
  11. private TokenStore redisTokenStore;
  12. @Override
  13. public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
  14. /**
  15. * redis token 方式
  16. */
  17. endpoints.authenticationManager(authenticationManager)
  18. .userDetailsService(kiteUserDetailsService)
  19. .tokenStore(redisTokenStore);
  20. }
  21. @Override
  22. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  23. clients.inMemory()
  24. .withClient("order-client")
  25. .secret(passwordEncoder.encode("order-secret-8888"))
  26. .authorizedGrantTypes("refresh_token", "authorization_code", "password")
  27. .accessTokenValiditySeconds(3600)
  28. .scopes("all")
  29. .and()
  30. .withClient("user-client")
  31. .secret(passwordEncoder.encode("user-secret-8888"))
  32. .authorizedGrantTypes("refresh_token", "authorization_code", "password")
  33. .accessTokenValiditySeconds(3600)
  34. .scopes("all");
  35. }
  36. @Override
  37. public void configure(AuthorizationServerSecurityConfigurer security) throws Exception {
  38. security.allowFormAuthenticationForClients();
  39. security.checkTokenAccess("isAuthenticated()");
  40. security.tokenKeyAccess("isAuthenticated()");
  41. }
  42. }

有三个 configure 方法的重写。

AuthorizationServerEndpointsConfigurer参数的重写

  1. endpoints.authenticationManager(authenticationManager)
  2. .userDetailsService(kiteUserDetailsService)
  3. .tokenStore(redisTokenStore);

authenticationManage() 调用此方法才能支持 password 模式。

userDetailsService() 设置用户验证服务。

tokenStore() 指定 token 的存储方式。

redisTokenStore Bean 的定义如下:

  1. @Configuration
  2. public class RedisTokenStoreConfig {
  3. @Autowired
  4. private RedisConnectionFactory redisConnectionFactory;
  5. @Bean
  6. public TokenStore redisTokenStore (){
  7. return new RedisTokenStore(redisConnectionFactory);
  8. }
  9. }

ClientDetailsServiceConfigurer参数的重写,在这里定义各个端的约束条件。包括

ClientId、Client-Secret:这两个参数对应请求端定义的 cleint-id 和 client-secret

authorizedGrantTypes 可以包括如下几种设置中的一种或多种:

  • authorization_code:授权码类型。
  • implicit:隐式授权类型。
  • password:资源所有者(即用户)密码类型。
  • client_credentials:客户端凭据(客户端ID以及Key)类型。
  • refresh_token:通过以上授权获得的刷新令牌来获取新的令牌。

accessTokenValiditySeconds:token 的有效期

scopes:用来限制客户端访问的权限,在换取的 token 的时候会带上 scope 参数,只有在 scopes 定义内的,才可以正常换取 token。

上面代码中是使用 inMemory 方式存储的,将配置保存到内存中,相当于硬编码了。正式环境下的做法是持久化到数据库中,比如 mysql 中。

具体的做法如下:

  1. 在数据库中增加表,并插入数据
  1. create table oauth_client_details (
  2. client_id VARCHAR(256) PRIMARY KEY,
  3. resource_ids VARCHAR(256),
  4. client_secret VARCHAR(256),
  5. scope VARCHAR(256),
  6. authorized_grant_types VARCHAR(256),
  7. web_server_redirect_uri VARCHAR(256),
  8. authorities VARCHAR(256),
  9. access_token_validity INTEGER,
  10. refresh_token_validity INTEGER,
  11. additional_information VARCHAR(4096),
  12. autoapprove VARCHAR(256)
  13. );
  14. INSERT INTO oauth_client_details
  15. (client_id, client_secret, scope, authorized_grant_types,
  16. web_server_redirect_uri, authorities, access_token_validity,
  17. refresh_token_validity, additional_information, autoapprove)
  18. VALUES
  19. ('user-client', '$2a$10$o2l5kA7z.Caekp72h5kU7uqdTDrlamLq.57M1F6ulJln9tRtOJufq', 'all',
  20. 'authorization_code,refresh_token,password', null, null, 3600, 36000, null, true);
  21. INSERT INTO oauth_client_details
  22. (client_id, client_secret, scope, authorized_grant_types,
  23. web_server_redirect_uri, authorities, access_token_validity,
  24. refresh_token_validity, additional_information, autoapprove)
  25. VALUES
  26. ('order-client', '$2a$10$GoIOhjqFKVyrabUNcie8d.ADX.qZSxpYbO6YK4L2gsNzlCIxEUDlW', 'all',
  27. 'authorization_code,refresh_token,password', null, null, 3600, 36000, null, true);

注意: client_secret 字段不能直接是 secret 的原始值,需要经过加密。因为是用的 BCryptPasswordEncoder,所以最终插入的值应该是经过 BCryptPasswordEncoder.encode()之后的值。

  1. 然后在配置文件 application.yml 中添加关于数据库的配置
  1. spring:
  2. datasource:
  3. url: jdbc:mysql://localhost:3306/spring_cloud?characterEncoding=UTF-8&useSSL=false
  4. username: root
  5. password: password
  6. hikari:
  7. connection-timeout: 30000
  8. idle-timeout: 600000
  9. max-lifetime: 1800000
  10. maximum-pool-size: 9

Spring Boot 2.0 之后默认使用 hikari 作为数据库连接池。如果使用其他连接池需要引入相关包,然后对应的增加配置。

  1. 在 OAuth2 配置类(OAuth2Config)中增加 DataSource 的注入
  1. @Autowired
  2. private DataSource dataSource;
  1. public void configure(ClientDetailsServiceConfigurer clients)重写方法修改为如下:
  1. @Override
  2. public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
  3. JdbcClientDetailsServiceBuilder jcsb = clients.jdbc(dataSource);
  4. jcsb.passwordEncoder(passwordEncoder);
  5. }

还有一个重写的方法 public void configure(AuthorizationServerSecurityConfigurer security),这个方法限制客户端访问认证接口的权限。

  1. security.allowFormAuthenticationForClients();
  2. security.checkTokenAccess("isAuthenticated()");
  3. security.tokenKeyAccess("isAuthenticated()");

第一行代码是允许客户端访问 OAuth2 授权接口,否则请求 token 会返回 401。

第二行和第三行分别是允许已授权用户访问 checkToken 接口和获取 token 接口。

完成之后,启动项目,如果你用的是 IDEA 会在下方的 Mapping 窗口中看到 oauth2 相关的 RESTful 接口。

主要有如下几个:

  1. POST /oauth/authorize 授权码模式认证授权接口
  2. GET/POST /oauth/token 获取 token 的接口
  3. POST /oauth/check_token 检查 token 合法性接口
创建用户客户端项目

上面创建完成了认证服务端,下面开始创建一个客户端,对应到我们系统中的业务相关的微服务。我们假设这个微服务项目是管理用户相关数据的,所以叫做用户客户端。

1、引用相关的 maven 包

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-web</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>org.springframework.cloud</groupId>
  7. <artifactId>spring-cloud-starter-oauth2</artifactId>
  8. </dependency>
  9. <dependency>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-data-redis</artifactId>
  12. </dependency>

2、application.yml 配置文件

  1. spring:
  2. application:
  3. name: client-user
  4. redis:
  5. database: 2
  6. host: localhost
  7. port: 32768
  8. password: 1qaz@WSX
  9. jedis:
  10. pool:
  11. max-active: 8
  12. max-idle: 8
  13. min-idle: 0
  14. timeout: 100ms
  15. server:
  16. port: 6101
  17. servlet:
  18. context-path: /client-user
  19. security:
  20. oauth2:
  21. client:
  22. client-id: user-client
  23. client-secret: user-secret-8888
  24. user-authorization-uri: http://localhost:6001/oauth/authorize
  25. access-token-uri: http://localhost:6001/oauth/token
  26. resource:
  27. id: user-client
  28. user-info-uri: user-info
  29. authorization:
  30. check-token-access: http://localhost:6001/oauth/check_token

上面是常规配置信息以及 redis 配置,重点是下面的 security 的配置,这里的配置稍有不注意就会出现 401 或者其他问题。

client-id、client-secret 要和认证服务中的配置一致,如果是使用 inMemory 还是 jdbc 方式。

user-authorization-uri 是授权码认证方式需要的,下一篇文章再说。

access-token-uri 是密码模式需要用到的获取 token 的接口。

authorization.check-token-access 也是关键信息,当此服务端接收到来自客户端端的请求后,需要拿着请求中的 token 到认证服务端做 token 验证,就是请求的这个接口

3、资源配置文件

在 OAuth2 的概念里,所有的接口都被称为资源,接口的权限也就是资源的权限,所以 Spring Security OAuth2 中提供了关于资源的注解 @EnableResourceServer,和 @EnableWebSecurity的作用类似。

  1. @Configuration
  2. @EnableResourceServer
  3. @EnableGlobalMethodSecurity(prePostEnabled = true)
  4. public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
  5. @Value("${security.oauth2.client.client-id}")
  6. private String clientId;
  7. @Value("${security.oauth2.client.client-secret}")
  8. private String secret;
  9. @Value("${security.oauth2.authorization.check-token-access}")
  10. private String checkTokenEndpointUrl;
  11. @Autowired
  12. private RedisConnectionFactory redisConnectionFactory;
  13. @Bean
  14. public TokenStore redisTokenStore (){
  15. return new RedisTokenStore(redisConnectionFactory);
  16. }
  17. @Bean
  18. public RemoteTokenServices tokenService() {
  19. RemoteTokenServices tokenService = new RemoteTokenServices();
  20. tokenService.setClientId(clientId);
  21. tokenService.setClientSecret(secret);
  22. tokenService.setCheckTokenEndpointUrl(checkTokenEndpointUrl);
  23. return tokenService;
  24. }
  25. @Override
  26. public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
  27. resources.tokenServices(tokenService());
  28. }
  29. }

因为使用的是 redis 作为 token 的存储,所以需要特殊配置一下叫做 tokenService 的 Bean,通过这个 Bean 才能实现 token 的验证。

4、最后,添加一个 RESTful 接口

  1. @Slf4j
  2. @RestController
  3. public class UserController {
  4. @GetMapping(value = "get")
  5. //@PreAuthorize("hasAuthority('ROLE_ADMIN')")
  6. @PreAuthorize("hasAnyRole('ROLE_ADMIN')")
  7. public Object get(Authentication authentication){
  8. //Authentication authentication = SecurityContextHolder.getContext().getAuthentication();
  9. authentication.getCredentials();
  10. OAuth2AuthenticationDetails details = (OAuth2AuthenticationDetails)authentication.getDetails();
  11. String token = details.getTokenValue();
  12. return token;
  13. }
  14. }

一个 RESTful 方法,只有当访问用户具有 ROLE_ADMIN 权限时才能访问,否则返回 401 未授权。

通过 Authentication 参数或者 SecurityContextHolder.getContext().getAuthentication() 可以拿到授权信息进行查看。

测试认证功能

1、启动认证服务端,启动端口为 6001

2、启动用户服务客户端,启动端口为6101

3、请求认证服务端获取 token

我是用 REST Client 来做访问请求的,请求格式如下:

  1. POST http://localhost:6001/oauth/token?grant_type=password&username=admin&password=123456&scope=all
  2. Accept: */*
  3. Cache-Control: no-cache
  4. Authorization: Basic dXNlci1jbGllbnQ6dXNlci1zZWNyZXQtODg4OA==

假设咱们在一个 web 端使用,grant_type 是 password,表明这是使用 OAuth2 的密码模式。

username=admin 和 password=123456 就相当于在 web 端登录界面输入的用户名和密码,我们在认证服务端配置中固定了用户名是 admin 、密码是 123456,而线上环境中则应该通过查询数据库获取。

scope=all 是权限有关的,在认证服务的 OAuthConfig 中指定了 scope 为 all 。

Authorization 要加在请求头中,格式为 Basic 空格 base64(clientId:clientSecret),这个微服务客户端的 client-id 是 user-client,client-secret 是 user-secret-8888,将这两个值通过冒号连接,并使用 base64 编码(user-client:user-secret-8888)之后的值为 dXNlci1jbGllbnQ6dXNlci1zZWNyZXQtODg4OA==,可以通过 Base64编码/解码器,在线解码Base64 在线编码获取。

运行请求后,如果参数都正确的话,获取到的返回内容如下,是一段 json 格式

  1. {
  2. "access_token": "9f958300-5005-46ea-9061-323c9e6c7a4d",
  3. "token_type": "bearer",
  4. "refresh_token": "0f5871f5-98f1-405e-848e-80f641bab72e",
  5. "expires_in": 3599,
  6. "scope": "all"
  7. }

access_token :  就是之后请求需要带上的 token,也是本次请求的主要目的
token_type:为 bearer,这是 access token 最常用的一种形式
refresh_token:之后可以用这个值来换取新的 token,而不用输入账号密码
expires_in:token 的过期时间(秒)

4、用获取到的 token 请求资源接口

我们在用户客户端中定义了一个接口 http://localhost:6101/client-user/get,现在就拿着上一步获取的 token 来请求这个接口。

  1. GET http://localhost:6101/client-user/get
  2. Accept: */*
  3. Cache-Control: no-cache
  4. Authorization: bearer ce334918-e666-455a-8ecd-8bd680415d84

同样需要请求头 Authorization,格式为 bearer + 空格 + token,正常情况下根据接口的逻辑,会把 token 原样返回。

5、token 过期后,用 refresh_token 换取 access_token

一般都会设置 access_token 的过期时间小于 refresh_token 的过期时间,以便在 access_token 过期后,不用用户再次登录的情况下,获取新的 access_token。

  1. ### 换取 access_token
  2. POST http://localhost:6001/oauth/token?grant_type=refresh_token&refresh_token=706dac10-d48e-4795-8379-efe8307a2282
  3. Accept: */*
  4. Cache-Control: no-cache
  5. Authorization: Basic dXNlci1jbGllbnQ6dXNlci1zZWNyZXQtODg4OA==

grant_type 设置为 refresh_token。

refresh_token 设置为请求 token 时返回的 refresh_token 的值。

请求头加入 Authorization,格式依然是 Basic + 空格 + base64(client-id:client-secret)

请求成功后会返回和请求 token 同样的数据格式。

用 JWT 替换 redisToken

上面 token 的存储用的是 redis 的方案,Spring Security OAuth2 还提供了 jdbc 和 jwt 的支持,jdbc 的暂不考虑,现在来介绍用 JWT 的方式来实现 token 的存储。

用 JWT 的方式就不用把 token 再存储到服务端了,JWT 有自己特殊的加密方式,可以有效的防止数据被篡改,只要不把用户密码等关键信息放到 JWT 里就可以保证安全性。

认证服务端改造

先把有关 redis 的配置去掉。

添加 JwtConfig 配置类
  1. @Configuration
  2. public class JwtTokenConfig {
  3. @Bean
  4. public TokenStore jwtTokenStore() {
  5. return new JwtTokenStore(jwtAccessTokenConverter());
  6. }
  7. @Bean
  8. public JwtAccessTokenConverter jwtAccessTokenConverter() {
  9. JwtAccessTokenConverter accessTokenConverter = new JwtAccessTokenConverter();
  10. accessTokenConverter.setSigningKey("dev");
  11. return accessTokenConverter;
  12. }
  13. }

JwtAccessTokenConverter是为了做 JWT 数据转换,这样做是因为 JWT 有自身独特的数据格式。如果没有了解过 JWT ,可以搜索一下先了解一下。

更改 OAuthConfig 配置类
  1. @Autowired
  2. private TokenStore jwtTokenStore;
  3. @Autowired
  4. private JwtAccessTokenConverter jwtAccessTokenConverter;
  5. @Override
  6. public void configure(final AuthorizationServerEndpointsConfigurer endpoints) throws Exception {
  7. /**
  8. * 普通 jwt 模式
  9. */
  10. endpoints.tokenStore(jwtTokenStore)
  11. .accessTokenConverter(jwtAccessTokenConverter)
  12. .userDetailsService(kiteUserDetailsService)
  13. /**
  14. * 支持 password 模式
  15. */
  16. .authenticationManager(authenticationManager);
  17. }

注入 JWT 相关的 Bean,然后修改 configure(final AuthorizationServerEndpointsConfigurer endpoints) 方法为 JWT 存储模式。

改造用户客户端

修改 application.yml 配置文件
  1. security:
  2. oauth2:
  3. client:
  4. client-id: user-client
  5. client-secret: user-secret-8888
  6. user-authorization-uri: http://localhost:6001/oauth/authorize
  7. access-token-uri: http://localhost:6001/oauth/token
  8. resource:
  9. jwt:
  10. key-uri: http://localhost:6001/oauth/token_key
  11. key-value: dev

注意认证服务端 JwtAccessTokenConverter设置的 SigningKey 要和配置文件中的 key-value 相同,不然会导致无法正常解码 JWT ,导致验证不通过。

ResourceServerConfig 类的配置
  1. @Configuration
  2. @EnableResourceServer
  3. @EnableGlobalMethodSecurity(prePostEnabled = true)
  4. public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
  5. @Bean
  6. public TokenStore jwtTokenStore() {
  7. return new JwtTokenStore(jwtAccessTokenConverter());
  8. }
  9. @Bean
  10. public JwtAccessTokenConverter jwtAccessTokenConverter() {
  11. JwtAccessTokenConverter accessTokenConverter = new JwtAccessTokenConverter();
  12. accessTokenConverter.setSigningKey("dev");
  13. accessTokenConverter.setVerifierKey("dev");
  14. return accessTokenConverter;
  15. }
  16. @Autowired
  17. private TokenStore jwtTokenStore;
  18. @Override
  19. public void configure(ResourceServerSecurityConfigurer resources) throws Exception {
  20. resources.tokenStore(jwtTokenStore);
  21. }
  22. }
运行请求 token 接口的请求
  1. POST http://localhost:6001/oauth/token?grant_type=password&username=admin&password=123456&scope=all
  2. Accept: */*
  3. Cache-Control: no-cache
  4. Authorization: Basic dXNlci1jbGllbnQ6dXNlci1zZWNyZXQtODg4OA==

返回结果如下:

  1. {
  2. "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NzE3NDM0OTQsInVzZXJfbmFtZSI6ImFkbWluIiwiYXV0aG9yaXRpZXMiOlsiUk9MRV9BRE1JTiJdLCJqdGkiOiI4Y2NhMjlhZi1lYTc3LTRmZTYtOWZlMS0zMjc0MTVkY2QyMWQiLCJjbGllbnRfaWQiOiJ1c2VyLWNsaWVudCIsInNjb3BlIjpbImFsbCJdfQ.0Ik3UwB1xjX2le5luEdtVAI_MEyu_OloRRYtPOvtvwM",
  3. "token_type": "bearer",
  4. "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiJhZG1pbiIsInNjb3BlIjpbImFsbCJdLCJhdGkiOiI4Y2NhMjlhZi1lYTc3LTRmZTYtOWZlMS0zMjc0MTVkY2QyMWQiLCJleHAiOjE1NzE3NzU4OTQsImF1dGhvcml0aWVzIjpbIlJPTEVfQURNSU4iXSwianRpIjoiZjdkMjg4NDUtMmU2ZC00ZmRjLTg1OGYtMWNiY2RlNzI1ZmMyIiwiY2xpZW50X2lkIjoidXNlci1jbGllbnQifQ.vk_msYtbrAr93h5sK4wy6EC2_wRD_cD_UBS8O6eRziw",
  5. "expires_in": 3599,
  6. "scope": "all",
  7. "jti": "8cca29af-ea77-4fe6-9fe1-327415dcd21d"
  8. }

我们已经看到返回的 token 是 JWT 格式了,到 JWT 在线解码网站 JSON Web Tokens - jwt.io 或者 JSON Web Token - Decode将 token 解码看一下

看到了没,user_name、client_id 等信息都在其中。

拿着返回的 token 请求用户客户端接口
  1. GET http://localhost:6101/client-user/get
  2. Accept: */*
  3. Cache-Control: no-cache
  4. Authorization: bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE1NzE3NDM0OTQsInVzZXJfbmFtZSI6ImFkbWluIiwiYXV0aG9yaXRpZXMiOlsiUk9MRV9BRE1JTiJdLCJqdGkiOiI4Y2NhMjlhZi1lYTc3LTRmZTYtOWZlMS0zMjc0MTVkY2QyMWQiLCJjbGllbnRfaWQiOiJ1c2VyLWNsaWVudCIsInNjb3BlIjpbImFsbCJdfQ.0Ik3UwB1xjX2le5luEdtVAI_MEyu_OloRRYtPOvtvwM

增强 JWT

如果我想在 JWT 中加入额外的字段(比方说用户的其他信息)怎么办呢,当然可以。spring security oauth2 提供了 TokenEnhancer 增强器。其实不光 JWT ,RedisToken 的方式同样可以。

声明一个增强器
  1. public class JWTokenEnhancer implements TokenEnhancer {
  2. @Override
  3. public OAuth2AccessToken enhance(OAuth2AccessToken oAuth2AccessToken, OAuth2Authentication oAuth2Authentication) {
  4. Map<String, Object> info = new HashMap<>();
  5. info.put("jwt-ext", "JWT 扩展信息");
  6. ((DefaultOAuth2AccessToken) oAuth2AccessToken).setAdditionalInformation(info);
  7. return oAuth2AccessToken;
  8. }
  9. }

通过 oAuth2Authentication 可以拿到用户名等信息,通过这些我们可以在这里查询数据库或者缓存获取更多的信息,而这些信息都可以作为 JWT 扩展信息加入其中。

OAuthConfig 配置类修改

注入增强器

  1. @Autowired
  2. private TokenEnhancer jwtTokenEnhancer;
  3. @Bean
  4. public TokenEnhancer jwtTokenEnhancer(){
  5. return new JWTokenEnhancer();
  6. }

修改 configure(final AuthorizationServerEndpointsConfigurer endpoints) 方法

  1. @Override
  2. public void configure( final AuthorizationServerEndpointsConfigurer endpoints ) throws Exception{
  3. /**
  4. * jwt 增强模式
  5. */
  6. TokenEnhancerChain enhancerChain = new TokenEnhancerChain();
  7. List<TokenEnhancer> enhancerList = new ArrayList<>();
  8. enhancerList.add( jwtTokenEnhancer );
  9. enhancerList.add( jwtAccessTokenConverter );
  10. enhancerChain.setTokenEnhancers( enhancerList );
  11. endpoints.tokenStore( jwtTokenStore )
  12. .userDetailsService( kiteUserDetailsService )
  13. /**
  14. * 支持 password 模式
  15. */
  16. .authenticationManager( authenticationManager )
  17. .tokenEnhancer( enhancerChain )
  18. .accessTokenConverter( jwtAccessTokenConverter );
  19. }
再次请求 token ,返回内容中多了个刚刚加入的 jwt-ext 字段
  1. {
  2. "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiJhZG1pbiIsImp3dC1leHQiOiJKV1Qg5omp5bGV5L-h5oGvIiwic2NvcGUiOlsiYWxsIl0sImV4cCI6MTU3MTc0NTE3OCwiYXV0aG9yaXRpZXMiOlsiUk9MRV9BRE1JTiJdLCJqdGkiOiJhNDU1MWQ5ZS1iN2VkLTQ3NTktYjJmMS1mMGI5YjIxY2E0MmMiLCJjbGllbnRfaWQiOiJ1c2VyLWNsaWVudCJ9.5j4hNsVpktG2iKxNqR-q1rfcnhlyV3M6HUBx5cd6PiQ",
  3. "token_type": "bearer",
  4. "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiJhZG1pbiIsImp3dC1leHQiOiJKV1Qg5omp5bGV5L-h5oGvIiwic2NvcGUiOlsiYWxsIl0sImF0aSI6ImE0NTUxZDllLWI3ZWQtNDc1OS1iMmYxLWYwYjliMjFjYTQyYyIsImV4cCI6MTU3MTc3NzU3OCwiYXV0aG9yaXRpZXMiOlsiUk9MRV9BRE1JTiJdLCJqdGkiOiJmNTI3ODJlOS0wOGRjLTQ2NGUtYmJhYy03OTMwNzYwYmZiZjciLCJjbGllbnRfaWQiOiJ1c2VyLWNsaWVudCJ9.UQMf140CG8U0eWh08nGlctpIye9iJ7p2i6NYHkGAwhY",
  5. "expires_in": 3599,
  6. "scope": "all",
  7. "jwt-ext": "JWT 扩展信息",
  8. "jti": "a4551d9e-b7ed-4759-b2f1-f0b9b21ca42c"
  9. }

用户客户端解析 JWT 数据

我们如果在 JWT 中加入了额外信息,这些信息我们可能会用到,而在接收到 JWT 格式的 token 之后,用户客户端要把 JWT 解析出来。

引入 JWT 包
  1. <dependency>
  2. <groupId>io.jsonwebtoken</groupId>
  3. <artifactId>jjwt</artifactId>
  4. <version>0.9.1</version>
  5. </dependency>
加一个 RESTful 接口,在其中解析 JWT
  1. @GetMapping(value = "jwt")
  2. @PreAuthorize("hasAnyRole('ROLE_ADMIN')")
  3. public Object jwtParser(Authentication authentication){
  4. authentication.getCredentials();
  5. OAuth2AuthenticationDetails details = (OAuth2AuthenticationDetails)authentication.getDetails();
  6. String jwtToken = details.getTokenValue();
  7. Claims claims = Jwts.parser()
  8. .setSigningKey("dev".getBytes(StandardCharsets.UTF_8))
  9. .parseClaimsJws(jwtToken)
  10. .getBody();
  11. return claims;
  12. }

同样注意其中签名的设置要与认证服务端相同。

用上一步的 token 请求上面的接口
  1. ### 解析 jwt
  2. GET http://localhost:6101/client-user/jwt
  3. Accept: */*
  4. Cache-Control: no-cache
  5. Authorization: bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiJhZG1pbiIsImp3dC1leHQiOiJKV1Qg5omp5bGV5L-h5oGvIiwic2NvcGUiOlsiYWxsIl0sImV4cCI6MTU3MTc0NTE3OCwiYXV0aG9yaXRpZXMiOlsiUk9MRV9BRE1JTiJdLCJqdGkiOiJhNDU1MWQ5ZS1iN2VkLTQ3NTktYjJmMS1mMGI5YjIxY2E0MmMiLCJjbGllbnRfaWQiOiJ1c2VyLWNsaWVudCJ9.5j4hNsVpktG2iKxNqR-q1rfcnhlyV3M6HUBx5cd6PiQ

返回内容如下:

  1. {
  2. "user_name": "admin",
  3. "jwt-ext": "JWT 扩展信息",
  4. "scope": [
  5. "all"
  6. ],
  7. "exp": 1571745178,
  8. "authorities": [
  9. "ROLE_ADMIN"
  10. ],
  11. "jti": "a4551d9e-b7ed-4759-b2f1-f0b9b21ca42c",
  12. "client_id": "user-client"
  13. }

以上就是 password 模式的完整过程,源码放到了 github 上,有需要的可以去看一下。

源码地址

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/768493
推荐阅读
相关标签
  

闽ICP备14008679号