How can I refresh the ApplicationContext? I'm using a beanRefFactory for EJBS. The applicationContext.xml is in the classpath. If I change some entries within the applicationContext.xml nothing is refreshed, altough the ClassPathXmlApplicationContext is derived from the AbstractRefreshableApplicationContext which sounds that the context will be refreshed?
<beans>
<bean id="at.sozvers.hvb.zustellclient.service.impl.zust ellclientService" lazy-init="true" class="org.springframework.context.support.ClassPa thXmlApplicationContext">
<constructor-arg>
<value>applicationContext.xml</value>
</constructor-arg>
</bean>
</beans>


Reply With Quote