|
@@ -4,12 +4,15 @@ import com.xxl.job.core.executor.XxlJobExecutor;
|
|
|
import com.xxl.job.core.glue.GlueFactory;
|
|
|
import com.xxl.job.core.handler.IJobHandler;
|
|
|
import com.xxl.job.core.handler.annotation.JobHandler;
|
|
|
+import com.xxl.job.core.handler.impl.MethodJobHandler;
|
|
|
import org.springframework.beans.BeansException;
|
|
|
import org.springframework.beans.factory.DisposableBean;
|
|
|
import org.springframework.beans.factory.InitializingBean;
|
|
|
import org.springframework.context.ApplicationContext;
|
|
|
import org.springframework.context.ApplicationContextAware;
|
|
|
+import org.springframework.core.annotation.AnnotationUtils;
|
|
|
|
|
|
+import java.lang.reflect.Method;
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
@@ -26,7 +29,7 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
|
|
|
|
|
|
|
|
|
initJobHandlerRepository(applicationContext);
|
|
|
-
|
|
|
+ initJobHandlerMethodRepository(applicationContext);
|
|
|
|
|
|
GlueFactory.refreshInstance(1);
|
|
|
|
|
@@ -42,7 +45,7 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
|
|
|
}
|
|
|
|
|
|
|
|
|
- private void initJobHandlerRepository(ApplicationContext applicationContext){
|
|
|
+ private void initJobHandlerRepository(ApplicationContext applicationContext) {
|
|
|
if (applicationContext == null) {
|
|
|
return;
|
|
|
}
|
|
@@ -50,13 +53,13 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
|
|
|
|
|
|
Map<String, Object> serviceBeanMap = applicationContext.getBeansWithAnnotation(JobHandler.class);
|
|
|
|
|
|
- if (serviceBeanMap!=null && serviceBeanMap.size()>0) {
|
|
|
+ if (serviceBeanMap != null && serviceBeanMap.size() > 0) {
|
|
|
for (Object serviceBean : serviceBeanMap.values()) {
|
|
|
- if (serviceBean instanceof IJobHandler){
|
|
|
+ if (serviceBean instanceof IJobHandler) {
|
|
|
String name = serviceBean.getClass().getAnnotation(JobHandler.class).value();
|
|
|
IJobHandler handler = (IJobHandler) serviceBean;
|
|
|
if (loadJobHandler(name) != null) {
|
|
|
- throw new RuntimeException("xxl-job jobhandler["+ name +"] naming conflicts.");
|
|
|
+ throw new RuntimeException("xxl-job jobhandler[" + name + "] naming conflicts.");
|
|
|
}
|
|
|
registJobHandler(name, handler);
|
|
|
}
|
|
@@ -64,12 +67,38 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ private void initJobHandlerMethodRepository(ApplicationContext applicationContext) {
|
|
|
+ if (applicationContext == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();
|
|
|
+ for (String beanDefinitionName : beanDefinitionNames) {
|
|
|
+ Object bean = applicationContext.getBean(beanDefinitionName);
|
|
|
+ Method[] methods = bean.getClass().getDeclaredMethods();
|
|
|
+ for (int i = 0; i < methods.length; i++) {
|
|
|
+ JobHandler jobHandler = AnnotationUtils.findAnnotation(methods[i], JobHandler.class);
|
|
|
+ if (jobHandler != null) {
|
|
|
+ String name = jobHandler.value();
|
|
|
+ if (name.isEmpty()) {
|
|
|
+ name = methods[i].getName();
|
|
|
+ }
|
|
|
+ if (loadJobHandler(name) != null) {
|
|
|
+ throw new RuntimeException("xxl-job jobhandler[" + name + "] naming conflicts.");
|
|
|
+ }
|
|
|
+ registJobHandler(name, new MethodJobHandler(bean, methods[i], jobHandler));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
private static ApplicationContext applicationContext;
|
|
|
+
|
|
|
@Override
|
|
|
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
|
|
|
this.applicationContext = applicationContext;
|
|
|
}
|
|
|
+
|
|
|
public static ApplicationContext getApplicationContext() {
|
|
|
return applicationContext;
|
|
|
}
|