Browse Source

修正打字错误

pull/129/head
lawrencehj 3 years ago
parent
commit
bc37cdd57b
  1. 2
      src/main/java/com/genersoft/iot/vmp/conf/security/WebSecurityConfig.java

2
src/main/java/com/genersoft/iot/vmp/conf/security/WebSecurityConfig.java

@ -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);
}

Loading…
Cancel
Save