优化接收Stripe回调时数据重复存储问题(添加唯一索引)

This commit is contained in:
2025-02-10 16:11:59 +08:00
parent ab7e1705c4
commit 7eb9abbdb5
7 changed files with 37 additions and 5 deletions

View File

@@ -93,7 +93,7 @@ public class RequestInfoUtil {
BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String output;
StringBuilder outputBuilder = new StringBuilder();
System.out.println("Output from Server .... \n");
// System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
outputBuilder.append(output);
System.out.println(output);