永洪社区

标题: 触发器 [打印本页]

作者: zdq    时间: 2022-1-30 10:50
标题: 触发器
这个操作类怎么选呢  
作者: 沧海婉婷    时间: 2022-1-30 10:57
自定义触发器需要提前开发类,这里写的是类名,可以在帮助文档中搜自定义触发器参考
作者: zdq    时间: 2022-1-30 11:02
沧海婉婷 发表于 2022-1-30 10:57
自定义触发器需要提前开发类,这里写的是类名,可以在帮助文档中搜自定义触发器参考 ...

你有写好的类可以发我参考一下吗
作者: 沧海婉婷    时间: 2022-1-30 11:06
zdq 发表于 2022-1-30 11:02
你有写好的类可以发我参考一下吗

不好意思,我目前没有,我问问其他人
作者: 沧海婉婷    时间: 2022-1-30 11:39
zdq 发表于 2022-1-30 11:02
你有写好的类可以发我参考一下吗

请参考以下代码
/**
* 该方法抛出异常或者返回false时, 定时任务将停止执行.
* 该方法返回true时, 表示允许运行定时任务.
*/
@Override
public boolean canRun(SchedContext schedcontext) {
    // 获取用户输入的lastDate参数
    Date lastDate = (Date)getUserInputParam(schedcontext, "lastDate");
    // 如果lastData在现在之前, 则允许定时任务运行, 否则拦截.
    if(lastDate.before(new Date())) {
        return true;
    }

    return false;
}

/**
* 该方法用于获取用户的输入参数
* @param context {@link SchedContext}对象
* @param paramName 参数名
* @return 用户输入的参数
* @throws RuntimeException 如果参数为空
*/
private Object getUserInputParam(SchedContext schedcontext,String paramName){
    Parameter param = schedcontext.getParam(paramName);

    if(param == null || param.getValue() == null) {
        throw new RuntimeException("参数" + paramName + "为空");
    }

    return param.getValue();
}




欢迎光临 永洪社区 (http://club.yonghongtech.com/) Powered by Discuz! X3.4