如何管理应用程序的外部依赖关系?

发布于 2024-07-10 22:47:13 字数 224 浏览 10 评论 0原文

外部依赖有多种类型。 与外部应用程序、组件或服务交互(例如,用于发送电子邮件的 Outlook、用于扫描的 TWAIN 或 WIA、用于各种目的的 ActiveX 对象和 Web 服务等)。

您的策略是什么来确保您的应用程序健壮,并且即使在此类外部依赖项(由于无数原因)不可用时也可以运行?

注意:您自己的源代码中包含的来自外部源的代码是另一种类型的外部依赖项,但这不是我在这里主要关心的。

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objects and Web services for various purposes, and so on).

What is your strategy for making sure that your application is robust, and can run even when such external dependencies (for innumerable reasons) are unavailable?

Note: Code from external sources included in your own source code is another type of external dependency, but that is not mainly what I am concerned about here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无名指的心愿 2024-07-17 22:47:14

我们的策略是,除非在特殊情况下,否则我们的软件可能不会这样做。 因此,我们的编程相当防御性:

  • 如果没有邮件连接,则邮件功能不可用。
  • 图形输出取决于可用的显卡。
  • 只有网络的可用性才能实现分布式功能。

还有更多。

Our strategy, is that our software may not except in exceptional circumstances. So we program quite defensively:

  • If there is no mail connection, the mail functionality is not available.
  • Graphic output depends on available graphics card.
  • Only the availability of a network enables the distributed functionality.

And there are more.

缪败 2024-07-17 22:47:14

另请注意,对于外部接口,就像用户输入一样,您不应该信任该输入。 始终验证输入,并在调用时检查一致性(或存在性)。

Also note, that with external interfaces, much as with user input, you should not trust that input. Always validate input, and check for consistency (or existence) when calling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文