组织数据并组织对数据的访问?

发布于 2024-12-10 12:40:00 字数 1432 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

乖乖 2024-12-17 12:40:00

在之前的工作中,我们为各种应用程序提供了多个 XML 文件,并且大部分配置都很相似,但根据环境和执行上下文而有所不同。此配置大部分是第三方服务的用户名和密码。当密码发生更改时,我们必须搜索数十个 XML 文件并进行更改,然后重新部署数十个应用程序。

我使用接口和类型层次结构将所有 XML 配置迁移到对象。这些接口允许我针对通用配置结构进行编码,并获得编译时支持以及使用依赖项注入来解析运行时实例。类型层次结构允许我在基类中定义一次不变的配置,并且仅覆盖不同的实际值。

我认为,对于一个小型应用程序来说,这有点过分了,但对我们来说却是必要的。

In a previous job, we had several XML files for our various apps, and much of the configuration was similar, but varied depending on the environment and execution context. Much of this configuration was usernames and password for third party services. When a password would change, we'd have to scour through dozens of XML files and make the changes, then, re-deploy dozens of apps.

I migrated all of the XML configurations to objects using interfaces and a type hierarchy. The interfaces allowed me to code against a common configuration structure, and get compile time support as well as use dependency injection to resolve the run-time instances. The type hierarchy allowed me to define the non-changing configurations once, in a base class, and only override the actual values that differed.

This would be overkill, I think, for a small app, but was imperative in our case.

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