1. Redirect to HTTPS
- 클라이언트가 HTTP 요청을 할 경우, 서버에서 HTTPS로 재요청하도록 리다이렉트 시킬 수 있습니다.
@Configuration
@EnableWebSecurity
public class WebSecurityConfig {
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http
// ...
.requiresChannel(channel -> channel
.anyRequest().requiresSecure()
);
return http.build();
}
}
'Spring > Spring Security' 카테고리의 다른 글
[Spring Security] 4-4. 보안: HttpFirewall (0) | 2023.10.14 |
---|---|
[Spring Security] 4-2. 보안: Security HTTP Response Headers (2) | 2023.10.14 |
[Spring Security] 4-1. 보안: CSRF (0) | 2023.10.06 |
[Spring Security][KoLiving] 4-5. BlackList Token (0) | 2023.10.03 |
[Spring Security][KoLiving] 4-4. RefreshToken Rotation (0) | 2023.10.03 |