优化匹配方式

This commit is contained in:
RuoYi 2024-01-25 11:34:25 +08:00
parent e9ae7ae5f3
commit 649cfe8652
1 changed files with 6 additions and 1 deletions

View File

@ -27,8 +27,13 @@ public class XssValidator implements ConstraintValidator<Xss, String>
public static boolean containsHtml(String value)
{
StringBuilder sHtml = new StringBuilder();
Pattern pattern = Pattern.compile(HTML_PATTERN);
Matcher matcher = pattern.matcher(value);
return matcher.matches();
while (matcher.find())
{
sHtml.append(matcher.group());
}
return pattern.matcher(sHtml).matches();
}
}