SysJobController.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package com.ruoyi.quartz.controller;
  2. import java.util.List;
  3. import org.quartz.SchedulerException;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.security.access.prepost.PreAuthorize;
  6. import org.springframework.web.bind.annotation.DeleteMapping;
  7. import org.springframework.web.bind.annotation.GetMapping;
  8. import org.springframework.web.bind.annotation.PathVariable;
  9. import org.springframework.web.bind.annotation.PostMapping;
  10. import org.springframework.web.bind.annotation.PutMapping;
  11. import org.springframework.web.bind.annotation.RequestBody;
  12. import org.springframework.web.bind.annotation.RequestMapping;
  13. import org.springframework.web.bind.annotation.RestController;
  14. import com.ruoyi.common.annotation.Log;
  15. import com.ruoyi.common.constant.Constants;
  16. import com.ruoyi.common.core.controller.BaseController;
  17. import com.ruoyi.common.core.domain.AjaxResult;
  18. import com.ruoyi.common.core.page.TableDataInfo;
  19. import com.ruoyi.common.enums.BusinessType;
  20. import com.ruoyi.common.exception.job.TaskException;
  21. import com.ruoyi.common.utils.StringUtils;
  22. import com.ruoyi.common.utils.poi.ExcelUtil;
  23. import com.ruoyi.quartz.domain.SysJob;
  24. import com.ruoyi.quartz.service.ISysJobService;
  25. import com.ruoyi.quartz.util.CronUtils;
  26. /**
  27. * 调度任务信息操作处理
  28. *
  29. * @author ruoyi
  30. */
  31. @RestController
  32. @RequestMapping("/monitor/job")
  33. public class SysJobController extends BaseController
  34. {
  35. @Autowired
  36. private ISysJobService jobService;
  37. /**
  38. * 查询定时任务列表
  39. */
  40. @PreAuthorize("@ss.hasPermi('monitor:job:list')")
  41. @GetMapping("/list")
  42. public TableDataInfo list(SysJob sysJob)
  43. {
  44. startPage();
  45. List<SysJob> list = jobService.selectJobList(sysJob);
  46. return getDataTable(list);
  47. }
  48. /**
  49. * 导出定时任务列表
  50. */
  51. @PreAuthorize("@ss.hasPermi('monitor:job:export')")
  52. @Log(title = "定时任务", businessType = BusinessType.EXPORT)
  53. @GetMapping("/export")
  54. public AjaxResult export(SysJob sysJob)
  55. {
  56. List<SysJob> list = jobService.selectJobList(sysJob);
  57. ExcelUtil<SysJob> util = new ExcelUtil<SysJob>(SysJob.class);
  58. return util.exportExcel(list, "定时任务");
  59. }
  60. /**
  61. * 获取定时任务详细信息
  62. */
  63. @PreAuthorize("@ss.hasPermi('monitor:job:query')")
  64. @GetMapping(value = "/{jobId}")
  65. public AjaxResult getInfo(@PathVariable("jobId") Long jobId)
  66. {
  67. return AjaxResult.success(jobService.selectJobById(jobId));
  68. }
  69. /**
  70. * 新增定时任务
  71. */
  72. @PreAuthorize("@ss.hasPermi('monitor:job:add')")
  73. @Log(title = "定时任务", businessType = BusinessType.INSERT)
  74. @PostMapping
  75. public AjaxResult add(@RequestBody SysJob job) throws SchedulerException, TaskException
  76. {
  77. if (!CronUtils.isValid(job.getCronExpression()))
  78. {
  79. return error("新增任务'" + job.getJobName() + "'失败,Cron表达式不正确");
  80. }
  81. else if (StringUtils.containsIgnoreCase(job.getInvokeTarget(), Constants.LOOKUP_RMI))
  82. {
  83. return error("新增任务'" + job.getJobName() + "'失败,目标字符串不允许'rmi://'调用");
  84. }
  85. else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.HTTP, Constants.HTTPS }))
  86. {
  87. return error("新增任务'" + job.getJobName() + "'失败,目标字符串不允许'http(s)//'调用");
  88. }
  89. job.setCreateBy(getUsername());
  90. return toAjax(jobService.insertJob(job));
  91. }
  92. /**
  93. * 修改定时任务
  94. */
  95. @PreAuthorize("@ss.hasPermi('monitor:job:edit')")
  96. @Log(title = "定时任务", businessType = BusinessType.UPDATE)
  97. @PutMapping
  98. public AjaxResult edit(@RequestBody SysJob job) throws SchedulerException, TaskException
  99. {
  100. if (!CronUtils.isValid(job.getCronExpression()))
  101. {
  102. return error("修改任务'" + job.getJobName() + "'失败,Cron表达式不正确");
  103. }
  104. else if (StringUtils.containsIgnoreCase(job.getInvokeTarget(), Constants.LOOKUP_RMI))
  105. {
  106. return error("修改任务'" + job.getJobName() + "'失败,目标字符串不允许'rmi://'调用");
  107. }
  108. else if (StringUtils.containsAnyIgnoreCase(job.getInvokeTarget(), new String[] { Constants.HTTP, Constants.HTTPS }))
  109. {
  110. return error("修改任务'" + job.getJobName() + "'失败,目标字符串不允许'http(s)//'调用");
  111. }
  112. job.setUpdateBy(getUsername());
  113. return toAjax(jobService.updateJob(job));
  114. }
  115. /**
  116. * 定时任务状态修改
  117. */
  118. @PreAuthorize("@ss.hasPermi('monitor:job:changeStatus')")
  119. @Log(title = "定时任务", businessType = BusinessType.UPDATE)
  120. @PutMapping("/changeStatus")
  121. public AjaxResult changeStatus(@RequestBody SysJob job) throws SchedulerException
  122. {
  123. SysJob newJob = jobService.selectJobById(job.getJobId());
  124. newJob.setStatus(job.getStatus());
  125. return toAjax(jobService.changeStatus(newJob));
  126. }
  127. /**
  128. * 定时任务立即执行一次
  129. */
  130. @PreAuthorize("@ss.hasPermi('monitor:job:changeStatus')")
  131. @Log(title = "定时任务", businessType = BusinessType.UPDATE)
  132. @PutMapping("/run")
  133. public AjaxResult run(@RequestBody SysJob job) throws SchedulerException
  134. {
  135. jobService.run(job);
  136. return AjaxResult.success();
  137. }
  138. /**
  139. * 删除定时任务
  140. */
  141. @PreAuthorize("@ss.hasPermi('monitor:job:remove')")
  142. @Log(title = "定时任务", businessType = BusinessType.DELETE)
  143. @DeleteMapping("/{jobIds}")
  144. public AjaxResult remove(@PathVariable Long[] jobIds) throws SchedulerException, TaskException
  145. {
  146. jobService.deleteJobByIds(jobIds);
  147. return AjaxResult.success();
  148. }
  149. }