【8.1.0】更新默认ws url

pull/60/head
fengshuonan 2024-01-15 20:44:43 +08:00
parent 4eb364a69f
commit 2c640cdea0
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class DefaultStrategyImpl implements ConfigInitStrategyApi {
public List<ConfigInitItem> getInitConfigs() {
ArrayList<ConfigInitItem> configInitItems = new ArrayList<>();
configInitItems.add(new ConfigInitItem("服务部署的访问地址", "SYS_SERVER_DEPLOY_HOST", "http://localhost:8080", "一般用在拼接文件的访问地址,注意,一定要配置连到后台的地址"));
configInitItems.add(new ConfigInitItem("websocket的ws-url", "WEB_SOCKET_WS_URL", "ws://localhost:8080/webSocket/{token}", "websocket模块的连接url用在消息通知模块注意一定要配置连到后台的地址"));
configInitItems.add(new ConfigInitItem("websocket的ws-url", "WEB_SOCKET_WS_URL", "ws://localhost:8080/ws/message/{token}", "websocket模块的连接url用在消息通知模块注意一定要配置连到后台的地址"));
configInitItems.add(new ConfigInitItem("auth认证用的jwt秘钥", "SYS_AUTH_JWT_SECRET", RandomUtil.randomString(30), "用于校验登录token已随机生成一个30位密钥请放心使用"));
configInitItems.add(new ConfigInitItem("Druid控制台账号", "SYS_DRUID_ACCOUNT", "admin", "Druid控制台账号"));
configInitItems.add(new ConfigInitItem("Druid控制台账号密码", "SYS_DRUID_PASSWORD", RandomUtil.randomString(20), "Druid控制台账号密码已随机生成一个20位密钥请放心使用"));