独立应用程序的配置文件在运行时发生更改?

发布于 2024-11-08 22:28:43 字数 385 浏览 0 评论 0原文

假设我有一个 Swing/Spring 独立应用程序。我想知道Spring是否检测到其配置文件的运行时更改,例如这个(假设该文件位于类路径上):

注释第二个bean并添加第一个bean,如下所示:

<beans>
    <bean id="randonNumberGenerator"  class="com.me.MyGenerator"/>

    <!--
    <bean id="randonNumberGenerator"  class="com.someoneelse.ADifferentGenerator"/>
    -->
</beans>

Spring会按预期在运行时更改实现吗?

Say I have a Swing/Spring standalone application. I am wondering whether Spring does detect runtime changes to its configuration file such as this one (assuming the file is on the classpath):

Commenting second bean and adding first bean as below:

<beans>
    <bean id="randonNumberGenerator"  class="com.me.MyGenerator"/>

    <!--
    <bean id="randonNumberGenerator"  class="com.someoneelse.ADifferentGenerator"/>
    -->
</beans>

Will Spring change the implementation at runtime as expected?

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

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

发布评论

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

评论(2

哽咽笑 2024-11-15 22:28:43

我不认为 Spring 提供了一种即时重新加载配置的方法。可以通过重新实例化整个 ApplicationContext 来实现,但这意味着所有 bean 都会重新创建等,并且软件的内部状态可能会在此过程中飞出窗口。

I don't think Spring provides a way to reload the configuration on-the-fly. It could be possible by re-instantiating the entire ApplicationContext, but that would mean that all beans are recreated etc., and internal state of the software would probably fly out the window in the process.

疑心病 2024-11-15 22:28:43

我认为您可以使用“AbstractRefreshableApplicationContext”来刷新上下文。

AbstractRefreshableApplicationContext refreshableContext = new ClassPathXmlApplicationContext (  "applicationContextRefreshable.xml" );
 refreshableContext.refresh ( );

有关详细信息,您可以查看此处

I think you can use the "AbstractRefreshableApplicationContext" to refresh the context.

AbstractRefreshableApplicationContext refreshableContext = new ClassPathXmlApplicationContext (  "applicationContextRefreshable.xml" );
 refreshableContext.refresh ( );

For details you can have a look here

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