We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BFF 网关是一种逻辑分层,在后端普遍采用的技术背景下,作为适配层更好地为前端服务,而传统业务后端只需要 关注自己的微服务即可。
BFF 层上游是各种后端业务微服务,在 BFF 下游就是各端应用,BFF 层向下给端提供 HTTP 接口,向上通过调用 HTTP 或 RPC 获取数据进行加工,最终完成整改 BFF 层的闭环。
对比传统的架构,我们可以 得出 BFF 层设计的优势:
BFF 同时也引出一些痛点:
数据处理
流量处理
安全问题
权限与校验设计
fast-gateway设计主要从 4 个方面来考虑:
fast-gateway
代码:https://github.com/giscafer/demo/tree/master/bff
node ./remote-service.js
node ./index.js
curl -v http://127.0.0.1:8080/service/get
参考资料
The text was updated successfully, but these errors were encountered:
No branches or pull requests
BFF 网关是一种逻辑分层,在后端普遍采用的技术背景下,作为适配层更好地为前端服务,而传统业务后端只需要 关注自己的微服务即可。
BFF 层上游是各种后端业务微服务,在 BFF 下游就是各端应用,BFF 层向下给端提供 HTTP 接口,向上通过调用 HTTP 或 RPC 获取数据进行加工,最终完成整改 BFF 层的闭环。
对比传统的架构,我们可以 得出 BFF 层设计的优势:
BFF 同时也引出一些痛点:
打造 BFF 网关需要考虑的问题
数据处理
流量处理
安全问题
权限与校验设计
如何设计一个扩展性良好的 BFF 层
fast-gateway
设计主要从 4 个方面来考虑:Demo
代码:https://github.com/giscafer/demo/tree/master/bff
node ./remote-service.js
node ./index.js
curl -v http://127.0.0.1:8080/service/get
参考资料
The text was updated successfully, but these errors were encountered: