|
@@ -0,0 +1,21 @@
|
|
|
+package com.tzld.longarticle.recommend.server.web;
|
|
|
+
|
|
|
+import com.tzld.longarticle.recommend.server.service.XxlJobService;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("/xxlJob")
|
|
|
+@Slf4j
|
|
|
+public class XxlJobController {
|
|
|
+ @Autowired
|
|
|
+ private XxlJobService service;
|
|
|
+
|
|
|
+ @GetMapping("/checkPublishPlan")
|
|
|
+ public void checkPublishPlan() {
|
|
|
+ service.checkPublishPlan(null);
|
|
|
+ }
|
|
|
+}
|