在运行时应用基于 Spring 的应用程序中的设置

发布于 2024-12-10 23:20:07 字数 338 浏览 3 评论 0原文

我们有基于 Spring (Spring.NET) 的 Web 应用程序,并使用 VariablePlaceholderConfigurer 将一些设置保存在单独的属性文件中。
这些属性主要是影响业务逻辑的不同值,例如电子邮件、超时、路径等。
现在我们需要实现管理 UI,以允许用户以更友好的方式更改这些设置。
因此,我们将把所有这些设置移动到数据库中。

问题:实现我在基于 Spring 的应用程序中描述的设置的最佳(标准、常见)方法是什么? (假设我们希望更改立即生效而无需重新启动应用程序。)

如果我们能够在将值设置为 bean 属性时保持当前的方法,那就太好了。

We have Spring based (Spring.NET) web application and use VariablePlaceholderConfigurer to keep some settings in a separate properties file.
These properties are mainly different values affecting business logic, like emails, timeouts, paths, etc.
Now we need to implement administrative UI to allow users to change these settings in more friendly way.
So we will move all these settings to a database.

Question: What is the best (standard, common) approach to implementing settings like I described in Spring based application? (Assuming we want changes to be effective immediately without application restart.)

It is good if we can keep our current approach when setting values as just properties of beans.

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

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

发布评论

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

评论(1

高冷爸爸 2024-12-17 23:20:07

The VariablePlaceholderConfigurer is ObjectFactoryPostProcessor, which is only invoked after reading the object definitions. So you cannot simply introduce a new IVariableSource that you refer to in your VariablePlaceholderConfigurer configuration, because it will only take effect after container reload.

You have to create an IObjectObjectPostProcessor to modify properties on container managed objects at runtime.

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