如何在 Spring.Net 中重新加载上下文

发布于 2024-12-25 16:52:43 字数 415 浏览 1 评论 0原文

我只是想知道答案:

using Spring.Context.Support;
...

var context = ContextRegistry.GetContext();
var myObject = (MyObject)context.GetObject("MyObject");

// Making changes to the config file...

???

// Is there a way to reload context 
// so I can have my newly updated object
// without restarting the whole application?

var myObjectWithChanges = (MyObject)context.GetObject("MyObject");

I would simply like to know the answer:

using Spring.Context.Support;
...

var context = ContextRegistry.GetContext();
var myObject = (MyObject)context.GetObject("MyObject");

// Making changes to the config file...

???

// Is there a way to reload context 
// so I can have my newly updated object
// without restarting the whole application?

var myObjectWithChanges = (MyObject)context.GetObject("MyObject");

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

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

发布评论

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

评论(1

萌无敌 2025-01-01 16:52:43

您可以使用

context.Refresh();

此方法从持久表示(例如 xml 配置)中重新加载所有对象定义。

刷新方法不是 IApplicationContext 接口的一部分,该接口是代码片段中 context 变量的推断类型。然而。它是 AbstractApplicationContext 的一部分,大多数 Spring.net 应用程序上下文均源自该上下文。

You can use

context.Refresh();

This reloads all object definitions from their persistent representation (e.g. xml configuration).

The refresh method is not part of the IApplicationContext interface, which is the inferred type of the context variable in your snippet. However. it is part of AbstractApplicationContext, from which most Spring.net application contexts derive.

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