Bean绑定在Spring java中

时间:2017-06-01 11:49:44

标签: java spring

我的设置如下

def load(paths: String*): DataFrame

假设 SampleBean bean; Boolean threadRun = true; while(threadRun) { bean = context.getBean("sampleBean"); threadRun = bean.getThreadRun(); } 对象是单例,并且容易从其他线程更改。这里每次迭代都必须从应用程序上下文中获取bean。有没有办法让bean对象检测到对它的更改?

0 个答案:

没有答案