From 8f2dffccbf56283bbb3f281f7dc3aeeab982cafb Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 26 Mar 2026 17:28:18 +0800
Subject: [PATCH] 1

---
 src/main/java/com/nq/service/impl/PriceServicesImpl.java |   96 ++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 77 insertions(+), 19 deletions(-)

diff --git a/src/main/java/com/nq/service/impl/PriceServicesImpl.java b/src/main/java/com/nq/service/impl/PriceServicesImpl.java
index 05dd037..b289c34 100644
--- a/src/main/java/com/nq/service/impl/PriceServicesImpl.java
+++ b/src/main/java/com/nq/service/impl/PriceServicesImpl.java
@@ -31,6 +31,8 @@
 import java.util.Date;
 import java.util.HashMap;
 import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
+
 import com.fasterxml.jackson.databind.ObjectMapper;
 
 @Service
@@ -110,46 +112,102 @@
         }
     }
 
-    public String doPost(String pid) {
-        // 从配置中获取 API URL,并拼接 key
-        String apiUrl = PropertiesUtil.getProperty("JS_IN_HTTP_URL") + "stock?key=" + PropertiesUtil.getProperty("JS_IN_KEY");
-        String result = null;
+    // 缓存条目类
+    private static class CacheEntry {
+        String result;
+        long lastExecuteTime;
+
+        CacheEntry(String result, long lastExecuteTime) {
+            this.result = result;
+            this.lastExecuteTime = lastExecuteTime;
+        }
+    }
+
+    // 按pid存储缓存条目
+    private static final Map<String, CacheEntry> cacheMap = new ConcurrentHashMap<>();
+
+    // 按pid存储锁对象,实现细粒度锁
+    private static final Map<String, Object> lockMap = new ConcurrentHashMap<>();
+
+    private static final long MIN_INTERVAL_MS = 3000;
+
+    public static String doPost(String pid) {
+        long currentTime = System.currentTimeMillis();
+
+        // 1. 快速检查缓存(无锁)
+        CacheEntry cached = cacheMap.get(pid);
+        if (cached != null && (currentTime - cached.lastExecuteTime) < MIN_INTERVAL_MS) {
+            return cached.result;
+        }
+
+        // 2. 获取该pid对应的锁对象
+        Object pidLock = lockMap.computeIfAbsent(pid, k -> new Object());
+
+        // 3. 同步块内再次检查
+        synchronized (pidLock) {
+            currentTime = System.currentTimeMillis();
+            cached = cacheMap.get(pid);
+
+            if (cached != null && (currentTime - cached.lastExecuteTime) < MIN_INTERVAL_MS) {
+                return cached.result;
+            }
+
+            // 4. 执行POST请求
+            String newResult = doActualPost(pid);
+
+            // 5. 更新该pid的缓存
+            if (newResult != null) {
+                cacheMap.put(pid, new CacheEntry(newResult, System.currentTimeMillis()));
+                return newResult;
+            } else if (cached != null) {
+                // 请求失败,返回旧缓存
+                return cached.result;
+            }
+
+            return "{\"error\":\"请求失败且无缓存数据\"}";
+        }
+    }
+
+    private static String doActualPost(String pid) {
+        String apiUrl = PropertiesUtil.getProperty("JS_IN_HTTP_URL") +
+                "stock?key=" + PropertiesUtil.getProperty("JS_IN_KEY");
+
         try {
             URL url = new URL(apiUrl);
             HttpURLConnection connection = (HttpURLConnection) url.openConnection();
 
-            // 设置请求方法为 POST
             connection.setRequestMethod("POST");
-            // 设置请求头
             connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
-            connection.setDoOutput(true); // 允许向连接输出
+            connection.setDoOutput(true);
+            connection.setConnectTimeout(5000);
+            connection.setReadTimeout(10000);
 
-            // 构建 POST 数据
             String postData = "pid=" + pid;
 
-            // 发送 POST 请求
             try (OutputStream os = connection.getOutputStream()) {
                 byte[] input = postData.getBytes("utf-8");
                 os.write(input, 0, input.length);
             }
 
             // 读取响应
-            BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
-            String inputLine;
-            StringBuffer response = new StringBuffer();
+            try (BufferedReader in = new BufferedReader(
+                    new InputStreamReader(connection.getInputStream()))) {
 
-            while ((inputLine = in.readLine()) != null) {
-                response.append(inputLine);
+                StringBuilder response = new StringBuilder();
+                String inputLine;
+                while ((inputLine = in.readLine()) != null) {
+                    response.append(inputLine);
+                }
+
+                return response.toString();
             }
-            in.close();
-            result = response.toString();
+
         } catch (Exception e) {
             e.printStackTrace();
+            // 不再直接返回旧缓存,由上层处理
+            return null;
         }
-        return result;
     }
-
-
 
     @Override
     public boolean isLimitUpBuy(String stockCode) {

--
Gitblit v1.9.3