/**
* 向网关发送请求
* @param url 请求路径
* @param packet 请求参数 xml格式
* @return
* @throws Exception
*/
public List<Map<String, String>> getKdgsDBQueryRecord(String url, String packet) throws Exception {
ResponseEntity<String> response = null;
HttpEntity<String> request = new HttpEntity<>(packet);
try {
URI uri = URI.create(url);
response = HttpInvoker.getInstance(
HttpInvoker请求,Http状态码
最新推荐文章于 2024-12-10 13:12:13 发布