From 92686e6b9ced9b0ac4af76b5478c1c3b97b1ac1a Mon Sep 17 00:00:00 2001 From: linbangquan <1437892690@qq.com> Date: Mon, 25 Dec 2023 14:22:00 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=85=A8=E5=B1=80?= =?UTF-8?q?=E5=B1=9E=E6=80=A7-=E5=85=A8=E5=B1=80=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E5=94=AF=E4=B8=80=E6=A0=87=E8=AF=86=E4=B8=8D=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E4=B8=8B=E5=88=92=E7=BA=BF=EF=BC=8C=E4=BF=9D=E5=AD=98=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E7=8E=AF=E5=A2=83=E5=B1=9E=E6=80=A7=E5=A4=B1=E8=B4=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1052109108117504]全局属性-全局属性唯一标识不支持下划线,保存应用环境属性失败 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1052109108117504 --- src/main/java/neatlogic/framework/util/RegexUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/framework/util/RegexUtils.java b/src/main/java/neatlogic/framework/util/RegexUtils.java index f2674e995..25324ffbc 100644 --- a/src/main/java/neatlogic/framework/util/RegexUtils.java +++ b/src/main/java/neatlogic/framework/util/RegexUtils.java @@ -96,7 +96,7 @@ public final class RegexUtils { put(NAME_WITH_SLASH, Pattern.compile("^[A-Za-z_\\.\\-\\d\\u4e00-\\u9fa5/]+$")); put(NAME_WITH_SPACE, Pattern.compile("^[A-Za-z_\\.\\-\\d\\s\\u4e00-\\u9fa5]+$")); put(ENGLISH_NUMBER_NAME, Pattern.compile("^[a-zA-Z0-9_\\-\\.]+$")); - put(ENGLISH_NAME, Pattern.compile("^[A-Za-z\\.\\-]+$")); + put(ENGLISH_NAME, Pattern.compile("^[A-Za-z_\\.\\-]+$")); put(ENGLISH_NUMBER_NAME_WHIT_UNDERLINE, Pattern.compile("^[A-Za-z0-9_]+$")); put(API_TOKEN, Pattern.compile("^[A-Za-z_\\{\\}\\d/]+$")); put(DATE_TIME, Pattern.compile("[1-9]\\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])\\s+(20|21|22|23|[0-1]\\d):[0-5]\\d:[0-5]\\d")); -- Gitee