wangyunpeng 6 часов назад
Родитель
Сommit
be4329cef6

+ 23 - 0
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/controller/JobController.java

@@ -0,0 +1,23 @@
+package com.tzld.piaoquan.longarticle.controller;
+
+import com.tzld.piaoquan.longarticle.job.NewMatchVideoJob;
+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;
+
+@Slf4j
+@RestController
+@RequestMapping("/job")
+public class JobController {
+    @Autowired
+    NewMatchVideoJob newMatchVideoJob;
+
+    @GetMapping("/matchCrawlerVideo")
+    public void matchCrawlerVideo() {
+        newMatchVideoJob.matchCrawlerVideoJob(null);
+    }
+}
+
+