类 JobLogController
java.lang.Object
com.xxl.job.admin.controller.JobLogController
index controller
- 作者:
- xuxueli 2015-12-19 16:13:16
-
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明com.xxl.job.core.biz.model.ReturnT<String>clearLog(int jobGroup, int jobId, int type) com.xxl.job.core.biz.model.ReturnT<List<XxlJobInfo>>getJobsByGroup(int jobGroup) index(jakarta.servlet.http.HttpServletRequest request, org.springframework.ui.Model model, Integer jobId) com.xxl.job.core.biz.model.ReturnT<com.xxl.job.core.biz.model.LogResult>logDetailCat(String executorAddress, long triggerTime, long logId, int fromLineNum) logDetailPage(int id, org.springframework.ui.Model model) com.xxl.job.core.biz.model.ReturnT<String>logKill(int id) pageList(jakarta.servlet.http.HttpServletRequest request, int start, int length, int jobGroup, int jobId, int logStatus, String filterTime)
-
字段详细资料
-
xxlJobInfoDao
-
xxlJobLogDao
-
-
构造器详细资料
-
JobLogController
public JobLogController()
-
-
方法详细资料
-
index
-
getJobsByGroup
@RequestMapping("/getJobsByGroup") @ResponseBody public com.xxl.job.core.biz.model.ReturnT<List<XxlJobInfo>> getJobsByGroup(int jobGroup) -
pageList
@RequestMapping("/pageList") @ResponseBody public Map<String,Object> pageList(jakarta.servlet.http.HttpServletRequest request, @RequestParam(required=false,defaultValue="0") int start, @RequestParam(required=false,defaultValue="10") int length, int jobGroup, int jobId, int logStatus, String filterTime) -
logDetailPage
@RequestMapping("/logDetailPage") public String logDetailPage(int id, org.springframework.ui.Model model) -
logDetailCat
@RequestMapping("/logDetailCat") @ResponseBody public com.xxl.job.core.biz.model.ReturnT<com.xxl.job.core.biz.model.LogResult> logDetailCat(String executorAddress, long triggerTime, long logId, int fromLineNum) -
logKill
@RequestMapping("/logKill") @ResponseBody public com.xxl.job.core.biz.model.ReturnT<String> logKill(int id) -
clearLog
@RequestMapping("/clearLog") @ResponseBody public com.xxl.job.core.biz.model.ReturnT<String> clearLog(int jobGroup, int jobId, int type)
-