|
@@ -0,0 +1,38 @@
|
|
|
+package com.xxl.executor.test;
|
|
|
+
|
|
|
+import com.xxl.job.core.biz.ExecutorBiz;
|
|
|
+import com.xxl.job.core.biz.model.ReturnT;
|
|
|
+import com.xxl.job.core.biz.model.TriggerParam;
|
|
|
+import com.xxl.job.core.enums.ExecutorBlockStrategyEnum;
|
|
|
+import com.xxl.job.core.glue.GlueTypeEnum;
|
|
|
+import com.xxl.job.core.rpc.netcom.NetComClientProxy;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by xuxueli on 17/5/12.
|
|
|
+ */
|
|
|
+public class DemoJobHandlerTest {
|
|
|
+
|
|
|
+ public static void main(String[] args) throws Exception {
|
|
|
+
|
|
|
+ // param
|
|
|
+ String jobHandler = "demoJobHandler";
|
|
|
+ String params = "";
|
|
|
+
|
|
|
+ // trigger data
|
|
|
+ TriggerParam triggerParam = new TriggerParam();
|
|
|
+ triggerParam.setJobId(1);
|
|
|
+ triggerParam.setExecutorHandler(jobHandler);
|
|
|
+ triggerParam.setExecutorParams(params);
|
|
|
+ triggerParam.setExecutorBlockStrategy(ExecutorBlockStrategyEnum.COVER_EARLY.name());
|
|
|
+ triggerParam.setGlueType(GlueTypeEnum.BEAN.name());
|
|
|
+ triggerParam.setGlueSource(null);
|
|
|
+ triggerParam.setGlueUpdatetime(System.currentTimeMillis());
|
|
|
+ triggerParam.setLogId(1);
|
|
|
+ triggerParam.setLogDateTim(System.currentTimeMillis());
|
|
|
+
|
|
|
+ // do remote trigger
|
|
|
+ ExecutorBiz executorBiz = (ExecutorBiz) new NetComClientProxy(ExecutorBiz.class, "127.0.0.1:9999").getObject();
|
|
|
+ ReturnT<String> runResult = executorBiz.run(triggerParam);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|