springboot spring cloud eureka 보안 http basic 인증 닫 기

779 단어 springCloud
인증 을 닫 지 않 습 니 다. 마이크로 서비스 이전의 호출 은 401 입 니 다.
basic 인증 닫 기
springboot 1. x 에 서 는 application. properties 에 security. basic. enabled = false 를 추가 하면 됩 니 다.그러나 springboot 2. x 에 서 는 이 설정 이 사용 되 지 않 습 니 다.
 
첫 번 째 설정
@EnableAutoConfiguration(exclude = {
        org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class
})

두 번 째 는 WebSecurity ConfigurerAdapter 클래스 를 계승 하고 configure 방법 을 다시 씁 니 다. 
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().permitAll().and().logout().permitAll();
    }
}

좋은 웹페이지 즐겨찾기