具有数据库属性的 ​​Spring bean 也可重新加载

发布于 2024-10-31 08:47:13 字数 339 浏览 3 评论 0原文

我的问题基本上是 这个, 我需要 Spring 向从数据库加载的 bean 注入属性(这在上面的问题中得到了回答),另一个喜欢能够重新加载这些属性。因此,当我更改数据库中的属性值时:

  • 它将自动重新加载
  • ,我可以要求 Spring 重新加载(重新注入)新值,

这是如何做到的?

谢谢

My question is basically is a followup question to this one,
I need Spring to inject properties to bean which are loaded from DB (this is answered in the above question) another like to be able to reload these properties. So when I change property value in the DB:

  • It'll be reloaded automatically
  • I can ask Spring to reload (re-inject) new values

How can this be done?

Thanks

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

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

发布评论

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

评论(1

你的笑 2024-11-07 08:47:13

Spring不包含任何内置逻辑,它会持续监视数据库并在数据更改时调用某些方法(这就是您所描述的)。

您需要自己实现一些逻辑来不断轮询数据库、检测更改,然后重新填充 bean。

Spring does not contain any built-in logic which would continuously watch your database and invoke some method when data changes (which is what you have described).

You would need to implement some logic yourself to continually poll the database, detect changes, and then re-populate the beans.

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