Commit bc37cdd57b7e4401035279c6db6883a2984e5f70
1 parent
87e7d002
修正打字错误
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/genersoft/iot/vmp/conf/security/WebSecurityConfig.java
| ... | ... | @@ -94,7 +94,7 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter { |
| 94 | 94 | List<String> interfaceAuthenticationExcludes = userSetup.getInterfaceAuthenticationExcludes(); |
| 95 | 95 | for (String interfaceAuthenticationExclude : interfaceAuthenticationExcludes) { |
| 96 | 96 | if (interfaceAuthenticationExclude.split("/").length < 4 ) { |
| 97 | - logger.warn("{}不满足两极目录,已忽略", interfaceAuthenticationExclude); | |
| 97 | + logger.warn("{}不满足两级目录,已忽略", interfaceAuthenticationExclude); | |
| 98 | 98 | }else { |
| 99 | 99 | web.ignoring().antMatchers(interfaceAuthenticationExclude); |
| 100 | 100 | } | ... | ... |