Commit 6e86a7e4 by xuxueli

NPE隐患处理。

parent 039f8d2b
......@@ -78,6 +78,7 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
// init job handler from method
String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();
if (beanDefinitionNames!=null && beanDefinitionNames.length>0) {
for (String beanDefinitionName : beanDefinitionNames) {
Object bean = applicationContext.getBean(beanDefinitionName);
Method[] methods = bean.getClass().getDeclaredMethods();
......@@ -133,6 +134,8 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
}
}
}
// ---------------------- applicationContext ----------------------
private static ApplicationContext applicationContext;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment