简单微服务:基于spring boot和spring cloud的微服务

时间:2024-02-19 20:03:07
【文件属性】:

文件名称:简单微服务:基于spring boot和spring cloud的微服务

文件大小:25KB

文件格式:ZIP

更新时间:2024-02-19 20:03:07

microservices spring-boot spring-cloud SpringBootJava

一个简单的微服务 包含鉴权服务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


【文件预览】:
simple-microservices-master
----.gitignore(6B)
----README.md(2KB)
----pom.xml(990B)
----api-service()
--------.gitignore(49B)
--------pom.xml(2KB)
--------src()
----auth-service()
--------.gitignore(49B)
--------pom.xml(3KB)
--------src()
----gateway-service()
--------.gitignore(49B)
--------pom.xml(3KB)
--------src()

网友评论