From ccf84377f8609d6f867a556d2802c57a497232ec Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Sun, 27 Mar 2022 15:34:13 +0800
Subject: [PATCH] 优化导出excel单元格验证,包含变更为开头.防止正常内容被替换
---
ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java | 79 ++++++++++++++++++++++++++++++---------
1 files changed, 61 insertions(+), 18 deletions(-)
diff --git a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java
index e8632d6..038c221 100644
--- a/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java
+++ b/ruoyi-common/ruoyi-common-core/src/main/java/com/ruoyi/common/core/constant/Constants.java
@@ -13,13 +13,54 @@
public static final String UTF8 = "UTF-8";
/**
+ * GBK 字符集
+ */
+ public static final String GBK = "GBK";
+
+ /**
+ * RMI 远程方法调用
+ */
+ public static final String LOOKUP_RMI = "rmi:";
+
+ /**
+ * LDAP 远程方法调用
+ */
+ public static final String LOOKUP_LDAP = "ldap:";
+
+ /**
+ * LDAPS 远程方法调用
+ */
+ public static final String LOOKUP_LDAPS = "ldaps:";
+
+ /**
+ * http请求
+ */
+ public static final String HTTP = "http://";
+
+ /**
+ * https请求
+ */
+ public static final String HTTPS = "https://";
+
+ /**
* 成功标记
*/
public static final Integer SUCCESS = 200;
+
/**
* 失败标记
*/
- public static final Integer FAIL = 501;
+ public static final Integer FAIL = 500;
+
+ /**
+ * 登录成功状态
+ */
+ public static final String LOGIN_SUCCESS_STATUS = "0";
+
+ /**
+ * 登录失败状态
+ */
+ public static final String LOGIN_FAIL_STATUS = "1";
/**
* 登录成功
@@ -62,9 +103,15 @@
public static final String IS_ASC = "isAsc";
/**
- * 参数管理 cache name
+ * 验证码 redis key
*/
- public static final String SYS_CONFIG_CACHE = "sys-config";
+ public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
+
+ /**
+ * 验证码有效期(分钟)
+ */
+ public static final long CAPTCHA_EXPIRATION = 2;
+
/**
* 参数管理 cache key
@@ -72,27 +119,23 @@
public static final String SYS_CONFIG_KEY = "sys_config:";
/**
- * 字典管理 cache name
- */
- public static final String SYS_DICT_CACHE = "sys-dict";
-
- /**
* 字典管理 cache key
*/
public static final String SYS_DICT_KEY = "sys_dict:";
/**
- * 验证码 redis key
- */
- public static final String CAPTCHA_CODE_KEY = "captcha_codes:";
-
- /**
- * 验证码有效期(分钟)
- */
- public static final Integer CAPTCHA_EXPIRATION = 2;
-
- /**
* 资源映射路径 前缀
*/
public static final String RESOURCE_PREFIX = "/profile";
+
+ /**
+ * 定时任务白名单配置(仅允许访问的包名,如其他需要可以自行添加)
+ */
+ public static final String[] JOB_WHITELIST_STR = { "com.ruoyi" };
+
+ /**
+ * 定时任务违规的字符
+ */
+ public static final String[] JOB_ERROR_STR = { "java.net.URL", "javax.naming.InitialContext", "org.yaml.snakeyaml",
+ "org.springframework", "org.apache", "com.ruoyi.common.core.utils.file" };
}
--
Gitblit v1.9.3