1
我需要啓用基本身份驗證到http://localhost:8080/hystrix.stream。如何對Hystrix.stream啓用Spring Boot Security基本身份驗證?
我添加了Spring Security它保護除hystrix.stream以外的所有其他端點。
是否可以通過Spring Boot Security基本身份驗證來保護hystrix.stream。
我需要啓用基本身份驗證到http://localhost:8080/hystrix.stream。如何對Hystrix.stream啓用Spring Boot Security基本身份驗證?
我添加了Spring Security它保護除hystrix.stream以外的所有其他端點。
是否可以通過Spring Boot Security基本身份驗證來保護hystrix.stream。
首先,您需要啓用安全爲您管理的端點:
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
public void configure(HttpSecurity http) throws Exception {
http
.antMatcher("/**")
.authorizeRequests()
.antMatchers("/hystrix.stream")
.authenticated(); // or whatever you like in here
// rest of your security config
}
}
:
management.security.enabled = true
接下來,就像你對任何其他端點你可以配置訪問hystrix.stream