From fe759aaf74c97777fd1af793c496f5ed20899de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E6=99=93=E4=B8=9C?= <763795151@qq.com> Date: Tue, 11 Apr 2023 12:25:24 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9B=86=E7=BE=A4=E5=AD=97=E6=AE=B5=E9=95=BF?= =?UTF-8?q?=E5=BA=A6=E5=A2=9E=E5=8A=A0=E5=88=B01024=EF=BC=8C=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=BC=8F=E6=B4=9E(CVE-2023-20860)=EF=BC=9Aspring?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=E5=88=B05.3.26?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 3 ++- src/main/resources/db/schema-h2.sql | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 7f32dc5..3e6d540 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ com.xuxd kafka-console-ui - 1.0.6 + 1.0.7 kafka-console-ui Kafka console manage ui @@ -25,6 +25,7 @@ 3.0.0 3.4.2 2.13.6 + 5.3.26 diff --git a/src/main/resources/db/schema-h2.sql b/src/main/resources/db/schema-h2.sql index b67d667..355ffc1 100644 --- a/src/main/resources/db/schema-h2.sql +++ b/src/main/resources/db/schema-h2.sql @@ -29,8 +29,8 @@ CREATE TABLE IF NOT EXISTS T_CLUSTER_INFO ( ID IDENTITY NOT NULL COMMENT '主键ID', CLUSTER_NAME VARCHAR(128) NOT NULL DEFAULT '' COMMENT '集群名', - ADDRESS VARCHAR(256) NOT NULL DEFAULT '' COMMENT '集群地址', - PROPERTIES VARCHAR(512) NOT NULL DEFAULT '' COMMENT '集群的其它属性配置', + ADDRESS VARCHAR(1024) NOT NULL DEFAULT '' COMMENT '集群地址', + PROPERTIES VARCHAR(1024) NOT NULL DEFAULT '' COMMENT '集群的其它属性配置', UPDATE_TIME TIMESTAMP NOT NULL DEFAULT NOW() COMMENT '更新时间', PRIMARY KEY (ID), UNIQUE (CLUSTER_NAME)