在此代码中,将刷新应用程序上下文。之后如何刷新mule Context?
import org.springframwork.context.ApplicationContext
public class ReloadService implements ApplicationContextAware{
private ApplicationContext context;
public void reload(){
((ConfigurableApplicationContext) context).refresh();
}
}