gongfuzhu 8 kuukautta sitten
vanhempi
commit
fd99c45d6f

+ 14 - 0
SpringBatchServiceServer/src/main/java/com/zswl/cloud/springBtach/server/core/controller/manager/Video2ManagerController.groovy

@@ -0,0 +1,14 @@
+package com.zswl.cloud.springBtach.server.core.controller.manager
+
+import com.zswl.cloud.springBatch.client.service.Video2Service
+import org.springframework.beans.factory.annotation.Autowired
+import org.springframework.web.bind.annotation.RequestMapping
+import org.springframework.web.bind.annotation.RestController
+
+@RestController
+@RequestMapping("manager/video2")
+class Video2ManagerController {
+    @Autowired
+    @Delegate(methodAnnotations = true, parameterAnnotations = true, includeTypes = Video2Service.class, interfaces = false)
+    private Video2Service video2Service;
+}