|
@@ -4,6 +4,7 @@ import com.xingyue.atbird.cs.dto.BaseResponseDTO;
|
|
|
import com.xingyue.atbird.cs.util.ExecUtils;
|
|
|
import com.xingyue.atbird.cs.util.ResultUtils;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -14,7 +15,7 @@ import java.util.UUID;
|
|
|
@RequestMapping("/invoker")
|
|
|
public class TestInvoker {
|
|
|
|
|
|
- private final static String CALLBACK = "http://localhost:8080/listener/callback.do";
|
|
|
+ private static String CALLBACK = "http://localhost:8198/listener/callback.do";
|
|
|
|
|
|
@RequestMapping(value = "/test.do")
|
|
|
public BaseResponseDTO test(String exepath) throws InterruptedException {
|