地区数据初始化之后,数据无法访问,因为缓存没有更新。现在更新为初始化完成,即清空与地区相关的缓存

This commit is contained in:
Chopper
2021-06-07 15:27:48 +08:00
parent f9f8cce13e
commit f949896685
2 changed files with 20 additions and 17 deletions

View File

@@ -49,7 +49,6 @@ public class ManagerSecurityConfig extends WebSecurityConfigurerAdapter {
.authorizeRequests();
// 配置的url 不需要授权
for (String url : ignoredUrlsProperties.getUrls()) {
log.error(url);
registry.antMatchers(url).permitAll();
}
registry