一个简单的微服务
包含鉴权服务auth-service,网关服务gateway-service,业务层api-service
所有服务基于spring boot 2.2.0.RELEASE和spring cloud Hoxton.M3进行开发。
api-service是业务服务,提供业务接口,没有token验证;
通过gateway-service可以访问api-service的业务接口,并在gateway上实现了统一的用户认证;
auth-service提供用户认证和用户鉴权能力。
认证服务
使用spring cloud oauth2,实现一个简单的基本的oauth2 provider
使用jwt令牌,使用自定义JwtTokenStore
提供/.well-known/jwks.json端点
网关服务
使用spring cloud gateway实现简单路由
作为oauth2资源服务器加入auth-service
API服务
提供简单的Restful API,通过gateway-service调用
运行
依次运行auth-service,gateway-service,api-s
1