Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
294 views
in Technique[技术] by (71.8m points)

使用Spring Cloud有什么优势?

使用Spring Cloud有什么优势?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Spring Cloud是一个工具集,开发人员可以将其设计调整为适用于分布式系统(例如配置管理等)的既定设计模式。

借助它,应用程序可以连接到服务,并在Cloud Foundry等多个云中轻松发现有关云环境的信息。
因此,凭借开发生产就绪型云本机应用程序的强大功能,Spring Cloud可以用于各个领域。

使用Spring Boot开发分布式微服务时,我们面临以下问题:

  • 与分布式系统相关的复杂性-这里包括网络问题,延迟,带宽问题,安全性问题。
  • 服务发现-服务发现工具管理群集中的进程和服务如何查找并相互通信。它涉及服务目录,在该目录中注册服务,然后能够在该目录中查找并连接到服务。
  • 冗余-分布式系统中的冗余问题。
  • Loadbalancing-负载平衡改善跨多个计算资源的工作负荷,诸如计算机,计算机集群,网络链路,中央处理单元,或磁盘驱动器的分布。
  • 性能问题-由于各种运营开销而导致的性能问题。
  • 部署复杂性-对Devops技能的要求。

Spring Cloud可以帮助解决这些问题。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...