| 12345678910111213141516171819202122232425262728 |
- 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);
- }
- @GetMapping("/vectorMatchVideoJob")
- public void vectorMatchVideoJob() {
- newMatchVideoJob.vectorMatchVideoJob(null);
- }
- }
|