处理几个具有相同结构的 web.config 文件的好方法是什么

发布于 2024-10-14 14:06:45 字数 179 浏览 8 评论 0原文

我有一个多租户应用程序,已有 6 个租户。

每个租户都有自己的虚拟网络和自己的 web.config。大多数设置对于所有租户来说都是相同的,但也有一些不同。

处理这些设置变得越来越困难。简化情况的第一步是我是否可以在一个地方编辑所有租户共享的设置。

框架或项目中是否内置了一些针对此类问题的内容?

I have a multi tenant application that has already 6 tenants.

Each tenant has its own virtual web with its own web.config. Most of the setting are the same for all tenants, but some differ.

Its getting more and more difficult to handle those settings. The first step to simplify the situation would be if I could edit settings that are shared by all tenants in one place.

Is there something built into the framework or some project that targets this kind of problem?

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

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

发布评论

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

评论(1

要走干脆点 2024-10-21 14:06:45

如果我没记错的话,web.config 是分层的。即,如果您有一个带有 web.config 的目录和带有自己的 web.config 的较低级别目录,并且当您在这些目录之间导航时,web.config 中的设置会被覆盖。也就是说,我已经忘记了此类的参与规则一个设置。

一个简单、更易于管理的解决方案可能是拥有自己的部分,您可以将其插入 web.config 中,并拥有自己的 XML 配置文件,您可以从 web.config 中引用该文件。它的构建非常简单,您可以管理层次结构的工作方式。

If I remember right, web.config is hierarchical. i.e if you have a directory with web.config and lower level directories with their own web.config and when you navigate between those directories, the settings within web.config are overlaid.. That said, I have forgotten the rules of engagement for such a setting.

A simple, more more manageable solution might be to have your own sections that you can plug into web.config and have your own XML config file that you can can reference from web.config. Its simple enough to build and you can manage the way your hierarchies work.

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