All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.cron.task.InvokeTask Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.cron.task;

import cn.hutool.core.exceptions.UtilException;
import cn.hutool.core.util.ClassLoaderUtil;
import cn.hutool.core.util.ClassUtil;
import cn.hutool.core.util.ReflectUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.cron.CronException;

import java.lang.reflect.Method;

/**
 * 反射执行任务
* 通过传入类名#方法名,通过反射执行相应的方法
* 如果是静态方法直接执行,如果是对象方法,需要类有默认的构造方法。 * * @author Looly * */ public class InvokeTask implements Task{ private final Object obj; private final Method method; /** * 构造 * @param classNameWithMethodName 类名与方法名的字符串表示,方法名和类名使用#隔开或者.隔开 */ public InvokeTask(String classNameWithMethodName) { int splitIndex = classNameWithMethodName.lastIndexOf('#'); if(splitIndex <= 0){ splitIndex = classNameWithMethodName.lastIndexOf('.'); } if (splitIndex <= 0) { throw new UtilException("Invalid classNameWithMethodName [{}]!", classNameWithMethodName); } //类 final String className = classNameWithMethodName.substring(0, splitIndex); if(StrUtil.isBlank(className)) { throw new IllegalArgumentException("Class name is blank !"); } final Class clazz = ClassLoaderUtil.loadClass(className); if(null == clazz) { throw new IllegalArgumentException("Load class with name of [" + className + "] fail !"); } this.obj = ReflectUtil.newInstanceIfPossible(clazz); //方法 final String methodName = classNameWithMethodName.substring(splitIndex + 1); if(StrUtil.isBlank(methodName)) { throw new IllegalArgumentException("Method name is blank !"); } this.method = ClassUtil.getPublicMethod(clazz, methodName); if(null == this.method) { throw new IllegalArgumentException("No method with name of [" + methodName + "] !"); } } @Override public void execute() { try { ReflectUtil.invoke(this.obj, this.method); } catch (UtilException e) { throw new CronException(e.getCause()); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy