添加线程池配置监听等访问安全白名单.

pull/84/head
chen.ma 4 years ago
parent 0cc8a13215
commit 1c2f400bd4

@ -88,7 +88,7 @@ public class GlobalSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
public void configure(WebSecurity web) throws Exception {
String[] ignores = Stream.of("/hippo4j/v1/cs/auth/users/apply/token/**").toArray(String[]::new);
String[] ignores = Stream.of("/hippo4j/v1/cs/auth/users/apply/token/**", "/hippo4j/v1/cs/configs/**").toArray(String[]::new);
web.ignoring().antMatchers(ignores);
}

Loading…
Cancel
Save