diff --git a/build/extraResources/java/application.yml.template b/build/extraResources/java/application.yml.template index 20cbf04..bf65a50 100644 --- a/build/extraResources/java/application.yml.template +++ b/build/extraResources/java/application.yml.template @@ -116,5 +116,3 @@ activate: public-key: "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnFMmIVanMxsW5S/qP8Wcxf/J3/i4631BP3UtWkRzO7jAw9HIAgK4Y7X53hXj6zMbfme1vMjQc0mq7m/KrH4WlTYpFexLO6Gnk8oH40F04tp+ABZIq93zNOydPEaVoZeTPH/LlkwrrxVGAMNNIKuebcqapp25JiWtlSFMv4kH/nDAj+2m8+P4zYVM1Ed6gO01eKDEYE3SBA1Ket2BfHTgviR/F8WKwlXh11enywsJnrHTM5dJQdlUxCjHy214TpheYOz/cv9elQnDfFAbmZW8mH5/hgMSTkm3h4uR7ITin6Erg+yc/t1kGaTWrzloyBRMSiFN/Pwr5yQjj+1wQqqUkwIDAQAB" -error: - removeCount: 14 diff --git a/build/extraResources/java/entrance.jar b/build/extraResources/java/entrance.jar index aaf4ede..9ee2c5e 100644 Binary files a/build/extraResources/java/entrance.jar and b/build/extraResources/java/entrance.jar differ diff --git a/frontend/src/utils/webSocketClient.ts b/frontend/src/utils/webSocketClient.ts index f8d7901..0490933 100644 --- a/frontend/src/utils/webSocketClient.ts +++ b/frontend/src/utils/webSocketClient.ts @@ -190,7 +190,7 @@ export default class SocketService { * WebSocket连接配置 */ private config: SocketConfig = { - url: 'ws://127.0.0.1:7777/hello', + url: 'ws://127.0.0.1:7778/hello', //url: 'ws://192.168.1.124:7777/hello', heartbeatInterval: 9000, // 9秒心跳间隔 reconnectDelay: 5000, // 5秒重连延迟 diff --git a/scripts/config-generator.js b/scripts/config-generator.js index 02e7e7f..1027932 100644 --- a/scripts/config-generator.js +++ b/scripts/config-generator.js @@ -75,7 +75,7 @@ class ConfigGenerator { // 替换 WebSocket 端口 if (options.websocketPort) { - template = template.replace(/port:\s*7777/g, `port: ${options.websocketPort}`); + template = template.replace(/port:\s*7778/g, `port: ${options.websocketPort}`); } // 写入配置文件