具有数据库属性的 Spring bean 也可重新加载
我的问题基本上是 这个, 我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.