数据库中的配置信息?

发布于 2024-11-26 03:05:57 字数 175 浏览 4 评论 0原文

我的 app.config 中有很多内容,当需要更改时,需要重新启动应用程序。对于我的 24x7 Web 服务器系统来说很糟糕(它确实是 24x7,甚至不是 23x7)。我想使用一个好的策略将配置信息保存在数据库表中并根据需要查询/使用它。我用谷歌搜索了一下,结果很干燥。在我重新发明轮子之前,有人有什么建议吗?

谢谢。

I have lots of stuff in an app.config, and when changes are necessary, an app restart is required. Bad for my 24x7 web server system (it really is 24x7, not even 23x7). I would like to use a good strategy for keeping the config information in a DB table and query/use it as needed. I googled around a bit and am coming up dry. Does anyone have any suggestions before I re-invent the wheel?

Thanks.

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

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

发布评论

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

评论(1

恏ㄋ傷疤忘ㄋ疼 2024-12-03 03:05:57

我最近的应用程序正是需要这个,并且无法使用任何应用程序服务器特定技术,因为我也需要一些在 cronjobs 上运行的控制台应用程序来访问它们。

我基本上制作了几个小表来创建注册表样式的配置数据库。我有一个键表(它们都有父键,因此可以按树结构排列)和一个附加到键的值表。所有键和值都已命名,因此我的访问函数如下所示:

openKey("/my_app");
createKey("basic_settings");
openKey("basic_settings");
createValue("log_directory","c:\logs");
getValue("/my_app/basic_settings","log_directory");

树结构允许您在逻辑上分离相似的数据(例如,您可以在几个不同的键下拥有“log_directory”值),并避免在中找到过于冗长的名称属性文件。

所有值都只是字符串(数据库中的 varchar2),因此转换布尔值和数字会产生一些开销:但它只是配置数据,所以谁在乎呢?

我还创建了一个“settings_changed”值,其中包含日期时间字符串:因此任何应用程序都可以快速判断是否需要刷新其配置(显然,您需要记住在更改任何内容时设置它)。

可能已经有工具可以做这种事情了:但这只需要一天的编码时间,而且效果很好。我添加了命令行工具来编辑和上传/下载树的部分或全部,然后在 Java Swing 中制作了一个快速图形编辑器。

I needed exactly this for my recent application, and couldn't use any application server specific techniques as I needed some console apps run on cronjobs to access them too.

I basically made a couple of small tables to create a registry-style configuration database. I have a table of keys (which all have parent-keys so they can be arranged in a tree structure) and a table of values which are attached to keys. All keys and values are named, so my access functions look like this:

openKey("/my_app");
createKey("basic_settings");
openKey("basic_settings");
createValue("log_directory","c:\logs");
getValue("/my_app/basic_settings","log_directory");

The tree structure allows you to logically separate similar data (e.g. you can have a "log_directory" value under several different keys) and avoids having the overly verbose names you find in properties files.

All the values are just strings (varchar2 in the db), so there's some overhead in converting booleans and numbers: but it's only config data, so who cares?

I also create a "settings_changed" value that has a datetime string in it: so any app can quickly tell if it needs to refresh it's configuration (you obviously need to remember to set it when you change anything though).

There may be tools out there to do this kind of thing already: but this was only a days worth of coding and works a treat. I added command line tools to edit and upload/download parts or all of the tree, then made a quick graphical editor in Java Swing.

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