修正打字错误

pull/129/head
lawrencehj 2021-07-23 16:58:11 +08:00
parent 87e7d0026f
commit bc37cdd57b
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
List<String> interfaceAuthenticationExcludes = userSetup.getInterfaceAuthenticationExcludes();
for (String interfaceAuthenticationExclude : interfaceAuthenticationExcludes) {
if (interfaceAuthenticationExclude.split("/").length < 4 ) {
logger.warn("{}不满足两目录,已忽略", interfaceAuthenticationExclude);
logger.warn("{}不满足两目录,已忽略", interfaceAuthenticationExclude);
}else {
web.ignoring().antMatchers(interfaceAuthenticationExclude);
}