mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
字典code解码失败,可能是使用了非法字符,请检查! #5655
This commit is contained in:
@ -100,8 +100,8 @@ public class DictTableWhiteListHandlerImpl implements IDictTableWhiteListHandler
|
|||||||
// 针对转义字符进行解码
|
// 针对转义字符进行解码
|
||||||
dictCodeString = URLDecoder.decode(dictCodeString, "UTF-8");
|
dictCodeString = URLDecoder.decode(dictCodeString, "UTF-8");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error(e.getMessage(), e);
|
log.warn(e.getMessage());
|
||||||
this.throwException("字典code解码失败,可能是使用了非法字符,请检查!");
|
//this.throwException("字典code解码失败,可能是使用了非法字符,请检查!");
|
||||||
}
|
}
|
||||||
dictCodeString = dictCodeString.trim();
|
dictCodeString = dictCodeString.trim();
|
||||||
String[] arr = dictCodeString.split(SymbolConstant.COMMA);
|
String[] arr = dictCodeString.split(SymbolConstant.COMMA);
|
||||||
|
|||||||
Reference in New Issue
Block a user