mirror of https://github.com/jeecgboot/jeecg-boot
空值问题处理
parent
581047c569
commit
4eaebd658b
|
@ -101,6 +101,10 @@ public class SqlInjectionUtil {
|
|||
*/
|
||||
static final Pattern fieldPattern = Pattern.compile("^[a-zA-Z0-9_]+$");
|
||||
public static String getSqlInjectField(String field) {
|
||||
if(oConvertUtils.isEmpty(field)){
|
||||
return null;
|
||||
}
|
||||
|
||||
field = field.trim();
|
||||
|
||||
if (field.contains(SymbolConstant.COMMA)) {
|
||||
|
|
Loading…
Reference in New Issue