10.HttpBasic 인증
HttpBasic 인증 방식
- 로그인 방식에는 form 태그를 이용한 formLogin 방식과 httpBasic 로그인 방식이 있다
- httpBasic 인증 방식은 아이디와 비밀번호를 Base64 방식으로 인코딩한 뒤 HTTP 인증 헤더에 부착하여 서버측에 요청을 보내는 것이다
1
2
3
4
5
6
7
8
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception{
http
.httpBasic(Customizer.withDefaults());
return http.build();
}
.formLogin() 대신에 사용하면 된다.