综合监测

This commit is contained in:
2022-11-08 16:40:54 +08:00
parent 25897b41d8
commit 53b00a7d28
13 changed files with 1930 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
.antMatchers("/*/api-docs").anonymous()
.antMatchers("/druid/**").anonymous()
// // 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated()
//.anyRequest().authenticated()
.and()
.headers().frameOptions().disable();
httpSecurity.logout().logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler);