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

时间:2011-05-23 08:58:12

标签: spring runtime implementation

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

评论第二个bean并添加第一个bean,如下所示:

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

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

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

2 个答案:

答案 0 :(得分:0)

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

答案 1 :(得分:0)

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

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

有关详情,请查看here