博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Spring定时任务并且通过AOP监控任务执行情况
阅读量:6258 次
发布时间:2019-06-22

本文共 4712 字,大约阅读时间需要 15 分钟。

原文:http://www.open-open.com/code/view/1426250803279

 

本文讲的是通过Spring注解的方式实现任务调度。只要引入了spring-context包就能够在项目中使用注解方式的任务调度。

下面看具体配置

需要在Spring配置文件中加入task的schema。

 

然后在启用注解支持

然后在代码中就可以直接用了,要定时执行的方法必须是void的,并且没有任何参数的。

@Override@Scheduled(cron="0 0 2 * * ?")@Transactional(rollbackFor=Exception.class)public void excute() throws DXPException

cron表达式请自行问百度,下面只列出几个从网上找的例子

CRON表达式 含义

“0 0 12 * * ?” 每天中午十二点触发

“0 15 10 ? * *” 每天早上10:15触发
“0 15 10 * * ?” 每天早上10:15触发
“0 15 10 * * ? *” 每天早上10:15触发
“0 15 10 * * ? 2005” 2005年的每天早上10:15触发
“0 * 14 * * ?” 每天从下午2点开始到2点59分每分钟一次触发
“0 0/5 14 * * ?” 每天从下午2点开始到2:55分结束每5分钟一次触发
“0 0/5 14,18 * * ?” 每天的下午2点至2:55和6点至6点55分两个时间段内每5分钟一次触发
“0 0-5 14 * * ?” 每天14:00至14:05每分钟一次触发
“0 10,44 14 ? 3 WED” 三月的每周三的14:10和14:44触发
“0 15 10 ? * MON-FRI” 每个周一、周二、周三、周四、周五的10:15触发

通过AOP监控方法的执行情况,并保存到数据库中

 

package com.tiamaes.gjds.dxp.aop;import java.util.Date;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.Pointcut;import org.springframework.beans.factory.annotation.Autowired;import com.tiamaes.gjds.dxp.annotation.Task;import com.tiamaes.gjds.dxp.bean.TbScheduledExcuteLog;import com.tiamaes.gjds.dxp.repository.TbScheduledExcuteLogRepository;import com.tiamaes.gjds.dxp.task.DxpScheduled;/**   * 

类描述:通过AOP监控方法的执行情况,并保存到数据库中

*

创建人:王成委

*

创建时间:2015年2月28日 上午9:40:18

*

版权说明: © 2015 Tiamaes

*/@Aspectpublic class ScheduledStatisticsHandler { @Autowired private TbScheduledExcuteLogRepository tbScheduledExcuteLogRepository; @Pointcut("@annotation(org.springframework.scheduling.annotation.Scheduled)") public void proxyAspect() { } @Around("proxyAspect()") public Object doInvoke(ProceedingJoinPoint joinPoint) throws Throwable{ Date date = new Date(); long start = System.currentTimeMillis(); Object result = joinPoint.proceed(); long end = System.currentTimeMillis(); Object target = joinPoint.getTarget(); TbScheduledExcuteLog log = new TbScheduledExcuteLog(); log.setClassName(joinPoint.getTarget().getClass().getName()); log.setConsum(end-start); log.setExcuteDate(date); log.setExcuteTime(date); log.setIsError(false); if (target instanceof DxpScheduled) { DxpScheduled scheduled = (DxpScheduled) target; Task task = scheduled.getClass().getAnnotation(Task.class); log.setContentName(task.value()); log.setRemark(scheduled.getTaskExcuteInfo()); log.setGetRecCount(scheduled.getRemoteCount()); log.setSyncRecCount(scheduled.getSyncCount()); } this.tbScheduledExcuteLogRepository.save(log); return result; }}

通过AOP记录执行时发生异常的任务

package com.tiamaes.gjds.dxp.aop;import java.util.Date;import org.aspectj.lang.JoinPoint;import org.aspectj.lang.annotation.AfterThrowing;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.Pointcut;import org.springframework.beans.factory.annotation.Autowired;import com.tiamaes.gjds.dxp.annotation.Task;import com.tiamaes.gjds.dxp.bean.TbScheduledExcuteLog;import com.tiamaes.gjds.dxp.dao.TbScheduledExcuteLogDao;import com.tiamaes.gjds.dxp.exception.DXPException;import com.tiamaes.gjds.dxp.task.DxpScheduled;import com.tiamaes.gjds.util.ExceptionTools;/**   * 

类描述: 处理任务执行时法伤的异常

*

创建人:王成委

*

创建时间:2015年2月28日 下午4:24:54

*

版权说明: © 2015 Tiamaes

*/@Aspectpublic class ScheduleExceptionHandler { @Autowired private TbScheduledExcuteLogDao tbScheduledExcuteLogDao; @Pointcut("@annotation(org.springframework.scheduling.annotation.Scheduled)") public void proxyAspect() { } @AfterThrowing(pointcut="proxyAspect()",throwing="ex") public void doException(JoinPoint joinPoint,Exception ex){ Object target = joinPoint.getTarget(); this.saveException(target, ex); } public void saveException(Object target,Exception ex){ try { Date date = new Date(); TbScheduledExcuteLog log = new TbScheduledExcuteLog(); log.setClassName(target.getClass().getName()); log.setExcuteDate(date); log.setExcuteTime(date); log.setIsError(true); log.setErrorInfo(ExceptionTools.getExceptionDetails(ex).toString()); if (target instanceof DxpScheduled) { DxpScheduled scheduled = (DxpScheduled) target; Task task = scheduled.getClass().getAnnotation(Task.class); log.setContentName(task.value()); } this.tbScheduledExcuteLogDao.saveAndCommit(log); } catch (DXPException e) { e.printStackTrace(); } }}

其中Task注解为标注任务的名称,方便在数据库中保存。

转载地址:http://ghtsa.baihongyu.com/

你可能感兴趣的文章
PCIE_DMA实例一:xapp1052详细使用说明
查看>>
MySQL也有潜规则 – Select 语句不加 Order By 如何排序?
查看>>
Struts(二十八):自定义拦截器
查看>>
安装Jenkins getting started卡住
查看>>
金软PDF转换(x-PDFConper)
查看>>
喵哈哈村的魔法考试 Round #15 (Div.2) 题解
查看>>
使用架构(XSD)验证XML文件
查看>>
Android开发之httpclient文件上传实现
查看>>
极客头条使用心得
查看>>
CSS解决无空格太长的字母,数字不会自己主动换行的问题
查看>>
日志打印longging模块(控制台和文件同时输出)
查看>>
这些年我们一起搞过的持续集成~Jenkins+Perl and Shell script
查看>>
php新版本号废弃 preg_replace /e 修饰符
查看>>
Android:Unable to resolve target ‘android-8’问题解决
查看>>
cocos2D(七)---- CCScene
查看>>
【DeepLearning】汉字手写体识别
查看>>
2017年中国大学生程序设计竞赛-中南地区赛暨第八届湘潭市大学生计算机程序设计大赛题解&源码(A.高斯消元,D,模拟,E,前缀和,F,LCS,H,Prim算法,I,胡搞,J,树状数组)...
查看>>
PostgreSQL 10首个测试版本发布
查看>>
ORACLE拼日期
查看>>
使用eclipse创建android项目的时候为什么会生成两个项目
查看>>