修复在已登录状态下打开/login地址会死循环的BUG

This commit is contained in:
interestinglife 2021-09-01 10:02:26 +08:00
parent 30dcecd4b4
commit e34fac19e5
2 changed files with 2 additions and 2 deletions

View File

@ -17,10 +17,10 @@
ok 系统缓存统一改为Caffeine移除Guava以减少程序包大小
ok 标签卡添加横排设置选项,简化配置项;
ok 图表开放用于获取底层图表系列数据的原始数据索引API便于定义底层组件事件处理逻辑时获取原始数据
ok 修复在已登录状态下打开/login地址会死循环的BUG
待定:
修复在已登录状态下打开/login地址会死循环的BUG
修复登录超时后打开页面内对话框未处理超时的BUG
看板图表新增导出数据功能;
共享看板支持设置密码;

View File

@ -293,7 +293,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
.antMatchers("/schemaGuard/**").access(AUTH_ADMIN)
//
.antMatchers("/login/**", "/register/**", "/resetPassword/**").access(AUTH_ANONYMOUS)
.antMatchers("/login/**", "/register/**", "/resetPassword/**").permitAll()
//
.antMatchers("/**").access(disableAnonymous ? AUTH_USER_ADMIN : AUTH_ANONYMOUS_USER_ADMIN)