当我调用可配置的spring应用程序上下文的refresh方法时,我想排除刷新bean。
ConfigurableApplicationContext context =
new FileSystemXmlApplicationContext(args[0]);
for(int i=0; i<MAX ; i++) {
context.refresh();
...
try {
Thread.sleep(pause);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
答案 0 :(得分:0)
将bean放入不同的上下文文件中,即spring-static-context.xml,不要将其包含在args数组中。