|
@@ -1,11 +1,15 @@
|
|
|
package com.scbfkj.uni.api;
|
|
|
|
|
|
import com.scbfkj.uni.library.IbmmqUtil;
|
|
|
+import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping("util")
|
|
@@ -87,7 +91,9 @@ public class UtilApi {
|
|
|
}
|
|
|
|
|
|
@PostMapping("ibmmq/depth")
|
|
|
- public int ibmmqDepth(@RequestBody(required = true) IbmmqProp prop) {
|
|
|
- return IbmmqUtil.getDepth(prop.getHost(), prop.getPort(), prop.getCCSID(), prop.getQueueManager(), prop.getChannel(), prop.getQueueName(), prop.getUserName(), prop.getPassword());
|
|
|
+ public ResponseEntity<Map<String,Object>> ibmmqDepth(@RequestBody(required = true) IbmmqProp prop) {
|
|
|
+ int depth = IbmmqUtil.getDepth(prop.getHost(), prop.getPort(), prop.getCCSID(), prop.getQueueManager(), prop.getChannel(), prop.getQueueName(), prop.getUserName(), prop.getPassword());
|
|
|
+
|
|
|
+ return ResponseEntity.ok(UniReturnUtil.success(depth));
|
|
|
}
|
|
|
}
|