类 JobBatchController

java.lang.Object
com.aizuda.easy.retry.server.web.controller.JobBatchController

@RestController @RequestMapping("/job/batch") public class JobBatchController extends Object
从以下版本开始:
: 2.4.0
  • 构造器详细资料

    • JobBatchController

      public JobBatchController()
  • 方法详细资料

    • getJobBatchPage

      @GetMapping("/list") public PageResult<List<JobBatchResponseVO>> getJobBatchPage(JobBatchQueryVO jobQueryVO)
    • getJobBatchDetail

      @GetMapping("{id}") public JobBatchResponseVO getJobBatchDetail(@PathVariable("id") Long id)
    • stop

      @PostMapping("/stop/{taskBatchId}") public Boolean stop(@PathVariable("taskBatchId") Long taskBatchId)
    • retry

      @PostMapping("/retry/{taskBatchId}") public Boolean retry(@PathVariable("taskBatchId") Long taskBatchId)