update xxl-job 2.3.0 => 2.3.1
This commit is contained in:
parent
8a6ccabffb
commit
7e626ea219
2
pom.xml
2
pom.xml
@ -37,7 +37,7 @@
|
|||||||
<lock4j.version>2.2.1</lock4j.version>
|
<lock4j.version>2.2.1</lock4j.version>
|
||||||
<dynamic-ds.version>3.5.1</dynamic-ds.version>
|
<dynamic-ds.version>3.5.1</dynamic-ds.version>
|
||||||
<tlog.version>1.4.0</tlog.version>
|
<tlog.version>1.4.0</tlog.version>
|
||||||
<xxl-job.version>2.3.0</xxl-job.version>
|
<xxl-job.version>2.3.1</xxl-job.version>
|
||||||
|
|
||||||
<!-- jdk11 缺失依赖 jaxb-->
|
<!-- jdk11 缺失依赖 jaxb-->
|
||||||
<jaxb.version>3.0.1</jaxb.version>
|
<jaxb.version>3.0.1</jaxb.version>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package com.xxl.job.admin.controller;
|
package com.xxl.job.admin.controller;
|
||||||
|
|
||||||
import com.xxl.job.admin.core.complete.XxlJobCompleter;
|
|
||||||
import com.xxl.job.admin.core.exception.XxlJobException;
|
import com.xxl.job.admin.core.exception.XxlJobException;
|
||||||
|
import com.xxl.job.admin.core.complete.XxlJobCompleter;
|
||||||
import com.xxl.job.admin.core.model.XxlJobGroup;
|
import com.xxl.job.admin.core.model.XxlJobGroup;
|
||||||
import com.xxl.job.admin.core.model.XxlJobInfo;
|
import com.xxl.job.admin.core.model.XxlJobInfo;
|
||||||
import com.xxl.job.admin.core.model.XxlJobLog;
|
import com.xxl.job.admin.core.model.XxlJobLog;
|
||||||
|
@ -37,7 +37,6 @@ public class CookieInterceptor implements AsyncHandlerInterceptor {
|
|||||||
modelAndView.addObject("I18nUtil", FtlUtil.generateStaticModel(I18nUtil.class.getName()));
|
modelAndView.addObject("I18nUtil", FtlUtil.generateStaticModel(I18nUtil.class.getName()));
|
||||||
}
|
}
|
||||||
|
|
||||||
AsyncHandlerInterceptor.super.postHandle(request, response, handler, modelAndView);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ public class PermissionInterceptor implements AsyncHandlerInterceptor {
|
|||||||
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
|
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
|
||||||
|
|
||||||
if (!(handler instanceof HandlerMethod)) {
|
if (!(handler instanceof HandlerMethod)) {
|
||||||
return AsyncHandlerInterceptor.super.preHandle(request, response, handler);
|
return true; // proceed with the next interceptor
|
||||||
}
|
}
|
||||||
|
|
||||||
// if need login
|
// if need login
|
||||||
@ -53,7 +53,7 @@ public class PermissionInterceptor implements AsyncHandlerInterceptor {
|
|||||||
request.setAttribute(LoginService.LOGIN_IDENTITY_KEY, loginUser);
|
request.setAttribute(LoginService.LOGIN_IDENTITY_KEY, loginUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
return AsyncHandlerInterceptor.super.preHandle(request, response, handler);
|
return true; // proceed with the next interceptor
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package com.xxl.job.admin.controller.resolver;
|
package com.xxl.job.admin.controller.resolver;
|
||||||
|
|
||||||
import com.xxl.job.admin.core.exception.XxlJobException;
|
import com.xxl.job.admin.core.exception.XxlJobException;
|
||||||
import com.xxl.job.admin.core.util.JacksonUtil;
|
|
||||||
import com.xxl.job.core.biz.model.ReturnT;
|
import com.xxl.job.core.biz.model.ReturnT;
|
||||||
|
import com.xxl.job.admin.core.util.JacksonUtil;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
@ -32,6 +32,7 @@ public class EmailJobAlarm implements JobAlarm {
|
|||||||
*
|
*
|
||||||
* @param jobLog
|
* @param jobLog
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public boolean doAlarm(XxlJobInfo info, XxlJobLog jobLog) {
|
public boolean doAlarm(XxlJobInfo info, XxlJobLog jobLog) {
|
||||||
boolean alarmResult = true;
|
boolean alarmResult = true;
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ public class XxlJobCompleter {
|
|||||||
|
|
||||||
// 1、handle success, to trigger child job
|
// 1、handle success, to trigger child job
|
||||||
String triggerChildMsg = null;
|
String triggerChildMsg = null;
|
||||||
if (XxlJobContext.HANDLE_COCE_SUCCESS == xxlJobLog.getHandleCode()) {
|
if (XxlJobContext.HANDLE_CODE_SUCCESS == xxlJobLog.getHandleCode()) {
|
||||||
XxlJobInfo xxlJobInfo = XxlJobAdminConfig.getAdminConfig().getXxlJobInfoDao().loadById(xxlJobLog.getJobId());
|
XxlJobInfo xxlJobInfo = XxlJobAdminConfig.getAdminConfig().getXxlJobInfoDao().loadById(xxlJobLog.getJobId());
|
||||||
if (xxlJobInfo != null && xxlJobInfo.getChildJobId() != null && xxlJobInfo.getChildJobId().trim().length() > 0) {
|
if (xxlJobInfo != null && xxlJobInfo.getChildJobId() != null && xxlJobInfo.getChildJobId().trim().length() > 0) {
|
||||||
triggerChildMsg = "<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>" + I18nUtil.getString("jobconf_trigger_child_run") + "<<<<<<<<<<< </span><br>";
|
triggerChildMsg = "<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>" + I18nUtil.getString("jobconf_trigger_child_run") + "<<<<<<<<<<< </span><br>";
|
||||||
|
@ -23,6 +23,7 @@ import java.util.Arrays;
|
|||||||
public class XxlJobAdminConfig implements InitializingBean, DisposableBean {
|
public class XxlJobAdminConfig implements InitializingBean, DisposableBean {
|
||||||
|
|
||||||
private static XxlJobAdminConfig adminConfig = null;
|
private static XxlJobAdminConfig adminConfig = null;
|
||||||
|
|
||||||
public static XxlJobAdminConfig getAdminConfig() {
|
public static XxlJobAdminConfig getAdminConfig() {
|
||||||
return adminConfig;
|
return adminConfig;
|
||||||
}
|
}
|
||||||
|
@ -191,13 +191,11 @@ import java.util.TreeSet;
|
|||||||
* </ul>
|
* </ul>
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @author Sharada Jambula, James House
|
* @author Sharada Jambula, James House
|
||||||
* @author Contributions from Mads Henderson
|
* @author Contributions from Mads Henderson
|
||||||
* @author Refactoring from CronTrigger to CronExpression by Aaron Craven
|
* @author Refactoring from CronTrigger to CronExpression by Aaron Craven
|
||||||
*
|
* <p>
|
||||||
* Borrowed from quartz v2.3.1
|
* Borrowed from quartz v2.3.1
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
public final class CronExpression implements Serializable, Cloneable {
|
public final class CronExpression implements Serializable, Cloneable {
|
||||||
|
|
||||||
@ -217,6 +215,7 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
|
|
||||||
protected static final Map<String, Integer> monthMap = new HashMap<String, Integer>(20);
|
protected static final Map<String, Integer> monthMap = new HashMap<String, Integer>(20);
|
||||||
protected static final Map<String, Integer> dayMap = new HashMap<String, Integer>(60);
|
protected static final Map<String, Integer> dayMap = new HashMap<String, Integer>(60);
|
||||||
|
|
||||||
static {
|
static {
|
||||||
monthMap.put("JAN", 0);
|
monthMap.put("JAN", 0);
|
||||||
monthMap.put("FEB", 1);
|
monthMap.put("FEB", 1);
|
||||||
@ -265,8 +264,7 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
*
|
*
|
||||||
* @param cronExpression String representation of the cron expression the
|
* @param cronExpression String representation of the cron expression the
|
||||||
* new object should represent
|
* new object should represent
|
||||||
* @throws java.text.ParseException
|
* @throws ParseException if the string expression cannot be parsed into a valid
|
||||||
* if the string expression cannot be parsed into a valid
|
|
||||||
* <CODE>CronExpression</CODE>
|
* <CODE>CronExpression</CODE>
|
||||||
*/
|
*/
|
||||||
public CronExpression(String cronExpression) throws ParseException {
|
public CronExpression(String cronExpression) throws ParseException {
|
||||||
@ -283,8 +281,7 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
* Constructs a new {@code CronExpression} as a copy of an existing
|
* Constructs a new {@code CronExpression} as a copy of an existing
|
||||||
* instance.
|
* instance.
|
||||||
*
|
*
|
||||||
* @param expression
|
* @param expression The existing cron expression to be copied
|
||||||
* The existing cron expression to be copied
|
|
||||||
*/
|
*/
|
||||||
public CronExpression(CronExpression expression) {
|
public CronExpression(CronExpression expression) {
|
||||||
/*
|
/*
|
||||||
@ -1067,14 +1064,28 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
int max = -1;
|
int max = -1;
|
||||||
if (stopAt < startAt) {
|
if (stopAt < startAt) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case SECOND : max = 60; break;
|
case SECOND:
|
||||||
case MINUTE : max = 60; break;
|
max = 60;
|
||||||
case HOUR : max = 24; break;
|
break;
|
||||||
case MONTH : max = 12; break;
|
case MINUTE:
|
||||||
case DAY_OF_WEEK : max = 7; break;
|
max = 60;
|
||||||
case DAY_OF_MONTH : max = 31; break;
|
break;
|
||||||
case YEAR : throw new IllegalArgumentException("Start year must be less than stop year");
|
case HOUR:
|
||||||
default : throw new IllegalArgumentException("Unexpected type encountered");
|
max = 24;
|
||||||
|
break;
|
||||||
|
case MONTH:
|
||||||
|
max = 12;
|
||||||
|
break;
|
||||||
|
case DAY_OF_WEEK:
|
||||||
|
max = 7;
|
||||||
|
break;
|
||||||
|
case DAY_OF_MONTH:
|
||||||
|
max = 31;
|
||||||
|
break;
|
||||||
|
case YEAR:
|
||||||
|
throw new IllegalArgumentException("Start year must be less than stop year");
|
||||||
|
default:
|
||||||
|
throw new IllegalArgumentException("Unexpected type encountered");
|
||||||
}
|
}
|
||||||
stopAt += max;
|
stopAt += max;
|
||||||
}
|
}
|
||||||
@ -1280,7 +1291,7 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
day = getLastDayOfMonth(mon, cl.get(Calendar.YEAR));
|
day = getLastDayOfMonth(mon, cl.get(Calendar.YEAR));
|
||||||
day -= lastdayOffset;
|
day -= lastdayOffset;
|
||||||
|
|
||||||
java.util.Calendar tcal = java.util.Calendar.getInstance(getTimeZone());
|
Calendar tcal = Calendar.getInstance(getTimeZone());
|
||||||
tcal.set(Calendar.SECOND, 0);
|
tcal.set(Calendar.SECOND, 0);
|
||||||
tcal.set(Calendar.MINUTE, 0);
|
tcal.set(Calendar.MINUTE, 0);
|
||||||
tcal.set(Calendar.HOUR_OF_DAY, 0);
|
tcal.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
@ -1316,7 +1327,7 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
t = day;
|
t = day;
|
||||||
day = daysOfMonth.first();
|
day = daysOfMonth.first();
|
||||||
|
|
||||||
java.util.Calendar tcal = java.util.Calendar.getInstance(getTimeZone());
|
Calendar tcal = Calendar.getInstance(getTimeZone());
|
||||||
tcal.set(Calendar.SECOND, 0);
|
tcal.set(Calendar.SECOND, 0);
|
||||||
tcal.set(Calendar.MINUTE, 0);
|
tcal.set(Calendar.MINUTE, 0);
|
||||||
tcal.set(Calendar.HOUR_OF_DAY, 0);
|
tcal.set(Calendar.HOUR_OF_DAY, 0);
|
||||||
@ -1580,9 +1591,9 @@ public final class CronExpression implements Serializable, Cloneable {
|
|||||||
* @param hour the hour to set
|
* @param hour the hour to set
|
||||||
*/
|
*/
|
||||||
protected void setCalendarHour(Calendar cal, int hour) {
|
protected void setCalendarHour(Calendar cal, int hour) {
|
||||||
cal.set(java.util.Calendar.HOUR_OF_DAY, hour);
|
cal.set(Calendar.HOUR_OF_DAY, hour);
|
||||||
if (cal.get(java.util.Calendar.HOUR_OF_DAY) != hour && hour != 24) {
|
if (cal.get(Calendar.HOUR_OF_DAY) != hour && hour != 24) {
|
||||||
cal.set(java.util.Calendar.HOUR_OF_DAY, hour + 1);
|
cal.set(Calendar.HOUR_OF_DAY, hour + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ public class XxlJobException extends RuntimeException {
|
|||||||
|
|
||||||
public XxlJobException() {
|
public XxlJobException() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public XxlJobException(String message) {
|
public XxlJobException(String message) {
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@ public class XxlJobGroup {
|
|||||||
|
|
||||||
// registry list
|
// registry list
|
||||||
private List<String> registryList; // 执行器地址列表(系统注册)
|
private List<String> registryList; // 执行器地址列表(系统注册)
|
||||||
|
|
||||||
public List<String> getRegistryList() {
|
public List<String> getRegistryList() {
|
||||||
if (addressList != null && addressList.trim().length() > 0) {
|
if (addressList != null && addressList.trim().length() > 0) {
|
||||||
registryList = new ArrayList<String>(Arrays.asList(addressList.split(",")));
|
registryList = new ArrayList<String>(Arrays.asList(addressList.split(",")));
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//package com.xxl.job.admin.core.jobbean;
|
package com.xxl.job.admin.core.old;//package com.xxl.job.admin.core.jobbean;
|
||||||
//
|
//
|
||||||
//import com.xxl.job.admin.core.thread.JobTriggerPoolHelper;
|
//import com.xxl.job.admin.core.thread.JobTriggerPoolHelper;
|
||||||
//import com.xxl.job.admin.core.trigger.TriggerTypeEnum;
|
//import com.xxl.job.admin.core.trigger.TriggerTypeEnum;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//package com.xxl.job.admin.core.schedule;
|
package com.xxl.job.admin.core.old;//package com.xxl.job.admin.core.schedule;
|
||||||
//
|
//
|
||||||
//import com.xxl.job.admin.core.conf.XxlJobAdminConfig;
|
//import com.xxl.job.admin.core.conf.XxlJobAdminConfig;
|
||||||
//import com.xxl.job.admin.core.jobbean.RemoteHttpJobBean;
|
//import com.xxl.job.admin.core.jobbean.RemoteHttpJobBean;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//package com.xxl.job.admin.core.quartz;
|
package com.xxl.job.admin.core.old;//package com.xxl.job.admin.core.quartz;
|
||||||
//
|
//
|
||||||
//import org.quartz.SchedulerConfigException;
|
//import org.quartz.SchedulerConfigException;
|
||||||
//import org.quartz.spi.ThreadPool;
|
//import org.quartz.spi.ThreadPool;
|
||||||
|
@ -30,6 +30,7 @@ public enum ExecutorRouteStrategyEnum {
|
|||||||
public String getTitle() {
|
public String getTitle() {
|
||||||
return title;
|
return title;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ExecutorRouter getRouter() {
|
public ExecutorRouter getRouter() {
|
||||||
return router;
|
return router;
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,7 @@ public class ExecutorRouteConsistentHash extends ExecutorRouter {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* get hash code on 2^32 ring (md5散列的方式计算hash值)
|
* get hash code on 2^32 ring (md5散列的方式计算hash值)
|
||||||
|
*
|
||||||
* @param key
|
* @param key
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -12,7 +12,7 @@ import java.util.concurrent.ConcurrentMap;
|
|||||||
* 单个JOB对应的每个执行器,使用频率最低的优先被选举
|
* 单个JOB对应的每个执行器,使用频率最低的优先被选举
|
||||||
* a(*)、LFU(Least Frequently Used):最不经常使用,频率/次数
|
* a(*)、LFU(Least Frequently Used):最不经常使用,频率/次数
|
||||||
* b、LRU(Least Recently Used):最近最久未使用,时间
|
* b、LRU(Least Recently Used):最近最久未使用,时间
|
||||||
*
|
* <p>
|
||||||
* Created by xuxueli on 17/3/10.
|
* Created by xuxueli on 17/3/10.
|
||||||
*/
|
*/
|
||||||
public class ExecutorRouteLFU extends ExecutorRouter {
|
public class ExecutorRouteLFU extends ExecutorRouter {
|
||||||
|
@ -14,7 +14,7 @@ import java.util.concurrent.ConcurrentMap;
|
|||||||
* 单个JOB对应的每个执行器,最久为使用的优先被选举
|
* 单个JOB对应的每个执行器,最久为使用的优先被选举
|
||||||
* a、LFU(Least Frequently Used):最不经常使用,频率/次数
|
* a、LFU(Least Frequently Used):最不经常使用,频率/次数
|
||||||
* b(*)、LRU(Least Recently Used):最近最久未使用,时间
|
* b(*)、LRU(Least Recently Used):最近最久未使用,时间
|
||||||
*
|
* <p>
|
||||||
* Created by xuxueli on 17/3/10.
|
* Created by xuxueli on 17/3/10.
|
||||||
*/
|
*/
|
||||||
public class ExecutorRouteLRU extends ExecutorRouter {
|
public class ExecutorRouteLRU extends ExecutorRouter {
|
||||||
|
@ -78,6 +78,7 @@ public class XxlJobScheduler {
|
|||||||
|
|
||||||
// ---------------------- executor-client ----------------------
|
// ---------------------- executor-client ----------------------
|
||||||
private static ConcurrentMap<String, ExecutorBiz> executorBizRepository = new ConcurrentHashMap<String, ExecutorBiz>();
|
private static ConcurrentMap<String, ExecutorBiz> executorBizRepository = new ConcurrentHashMap<String, ExecutorBiz>();
|
||||||
|
|
||||||
public static ExecutorBiz getExecutorBiz(String address) throws Exception {
|
public static ExecutorBiz getExecutorBiz(String address) throws Exception {
|
||||||
// valid
|
// valid
|
||||||
if (address == null || address.trim().length() == 0) {
|
if (address == null || address.trim().length() == 0) {
|
||||||
|
@ -62,7 +62,7 @@ public class JobFailMonitorHelper {
|
|||||||
|
|
||||||
// 2、fail alarm monitor
|
// 2、fail alarm monitor
|
||||||
int newAlarmStatus = 0; // 告警状态:0-默认、-1=锁定状态、1-无需告警、2-告警成功、3-告警失败
|
int newAlarmStatus = 0; // 告警状态:0-默认、-1=锁定状态、1-无需告警、2-告警成功、3-告警失败
|
||||||
if (info != null && info.getAlarmEmail() != null && info.getAlarmEmail().trim().length() > 0) {
|
if (info != null) {
|
||||||
boolean alarmResult = XxlJobAdminConfig.getAdminConfig().getJobAlarmer().alarm(info, log);
|
boolean alarmResult = XxlJobAdminConfig.getAdminConfig().getJobAlarmer().alarm(info, log);
|
||||||
newAlarmStatus = alarmResult ? 2 : 3;
|
newAlarmStatus = alarmResult ? 2 : 3;
|
||||||
} else {
|
} else {
|
||||||
|
@ -20,6 +20,7 @@ public class JobLogReportHelper {
|
|||||||
private static Logger logger = LoggerFactory.getLogger(JobLogReportHelper.class);
|
private static Logger logger = LoggerFactory.getLogger(JobLogReportHelper.class);
|
||||||
|
|
||||||
private static JobLogReportHelper instance = new JobLogReportHelper();
|
private static JobLogReportHelper instance = new JobLogReportHelper();
|
||||||
|
|
||||||
public static JobLogReportHelper getInstance() {
|
public static JobLogReportHelper getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
@ -27,6 +28,7 @@ public class JobLogReportHelper {
|
|||||||
|
|
||||||
private Thread logrThread;
|
private Thread logrThread;
|
||||||
private volatile boolean toStop = false;
|
private volatile boolean toStop = false;
|
||||||
|
|
||||||
public void start() {
|
public void start() {
|
||||||
logrThread = new Thread(new Runnable() {
|
logrThread = new Thread(new Runnable() {
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ public class JobScheduleHelper {
|
|||||||
private static Logger logger = LoggerFactory.getLogger(JobScheduleHelper.class);
|
private static Logger logger = LoggerFactory.getLogger(JobScheduleHelper.class);
|
||||||
|
|
||||||
private static JobScheduleHelper instance = new JobScheduleHelper();
|
private static JobScheduleHelper instance = new JobScheduleHelper();
|
||||||
|
|
||||||
public static JobScheduleHelper getInstance() {
|
public static JobScheduleHelper getInstance() {
|
||||||
return instance;
|
return instance;
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,9 @@ public enum TriggerTypeEnum {
|
|||||||
private TriggerTypeEnum(String title) {
|
private TriggerTypeEnum(String title) {
|
||||||
this.title = title;
|
this.title = title;
|
||||||
}
|
}
|
||||||
|
|
||||||
private String title;
|
private String title;
|
||||||
|
|
||||||
public String getTitle() {
|
public String getTitle() {
|
||||||
return title;
|
return title;
|
||||||
}
|
}
|
||||||
|
@ -30,15 +30,12 @@ public class XxlJobTrigger {
|
|||||||
*
|
*
|
||||||
* @param jobId
|
* @param jobId
|
||||||
* @param triggerType
|
* @param triggerType
|
||||||
* @param failRetryCount
|
* @param failRetryCount >=0: use this param
|
||||||
* >=0: use this param
|
|
||||||
* <0: use param from job info config
|
* <0: use param from job info config
|
||||||
* @param executorShardingParam
|
* @param executorShardingParam
|
||||||
* @param executorParam
|
* @param executorParam null: use job param
|
||||||
* null: use job param
|
|
||||||
* not null: cover job param
|
* not null: cover job param
|
||||||
* @param addressList
|
* @param addressList null: use executor addressList
|
||||||
* null: use executor addressList
|
|
||||||
* not null: cover
|
* not null: cover
|
||||||
*/
|
*/
|
||||||
public static void trigger(int jobId,
|
public static void trigger(int jobId,
|
||||||
@ -200,6 +197,7 @@ public class XxlJobTrigger {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* run executor
|
* run executor
|
||||||
|
*
|
||||||
* @param triggerParam
|
* @param triggerParam
|
||||||
* @param address
|
* @param address
|
||||||
* @return
|
* @return
|
||||||
|
@ -23,6 +23,7 @@ public class I18nUtil {
|
|||||||
private static Logger logger = LoggerFactory.getLogger(I18nUtil.class);
|
private static Logger logger = LoggerFactory.getLogger(I18nUtil.class);
|
||||||
|
|
||||||
private static Properties prop = null;
|
private static Properties prop = null;
|
||||||
|
|
||||||
public static Properties loadI18nProp() {
|
public static Properties loadI18nProp() {
|
||||||
if (prop != null) {
|
if (prop != null) {
|
||||||
return prop;
|
return prop;
|
||||||
|
@ -11,6 +11,7 @@ import java.util.concurrent.ConcurrentMap;
|
|||||||
public class LocalCacheUtil {
|
public class LocalCacheUtil {
|
||||||
|
|
||||||
private static ConcurrentMap<String, LocalCacheData> cacheRepository = new ConcurrentHashMap<String, LocalCacheData>(); // 类型建议用抽象父类,兼容性更好;
|
private static ConcurrentMap<String, LocalCacheData> cacheRepository = new ConcurrentHashMap<String, LocalCacheData>(); // 类型建议用抽象父类,兼容性更好;
|
||||||
|
|
||||||
private static class LocalCacheData {
|
private static class LocalCacheData {
|
||||||
private String key;
|
private String key;
|
||||||
private Object val;
|
private Object val;
|
||||||
|
@ -31,6 +31,7 @@ public class LoginService {
|
|||||||
String tokenHex = new BigInteger(tokenJson.getBytes()).toString(16);
|
String tokenHex = new BigInteger(tokenJson.getBytes()).toString(16);
|
||||||
return tokenHex;
|
return tokenHex;
|
||||||
}
|
}
|
||||||
|
|
||||||
private XxlJobUser parseToken(String tokenHex) {
|
private XxlJobUser parseToken(String tokenHex) {
|
||||||
XxlJobUser xxlJobUser = null;
|
XxlJobUser xxlJobUser = null;
|
||||||
if (tokenHex != null) {
|
if (tokenHex != null) {
|
||||||
@ -103,8 +104,5 @@ public class LoginService {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
|
||||||
System.out.println("121312");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
admin_name=Scheduling Center
|
admin_name=Scheduling Center
|
||||||
admin_name_full=Distributed Task Scheduling Platform XXL-JOB
|
admin_name_full=Distributed Task Scheduling Platform XXL-JOB
|
||||||
admin_version=2.3.0
|
admin_version=2.3.1
|
||||||
admin_i18n=en
|
admin_i18n=en
|
||||||
|
|
||||||
## system
|
## system
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
admin_name=任务调度中心
|
admin_name=任务调度中心
|
||||||
admin_name_full=分布式任务调度平台XXL-JOB
|
admin_name_full=分布式任务调度平台XXL-JOB
|
||||||
admin_version=2.3.0
|
admin_version=2.3.1
|
||||||
admin_i18n=
|
admin_i18n=
|
||||||
|
|
||||||
## system
|
## system
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
admin_name=任務調度中心
|
admin_name=任務調度中心
|
||||||
admin_name_full=分布式任務調度平臺XXL-JOB
|
admin_name_full=分布式任務調度平臺XXL-JOB
|
||||||
admin_version=2.3.0
|
admin_version=2.3.1
|
||||||
admin_i18n=
|
admin_i18n=
|
||||||
|
|
||||||
## system
|
## system
|
||||||
|
Loading…
x
Reference in New Issue
Block a user