반응형
아주 유용한 기능을 하나 알게 됐다.
스프링 시큐리티를 쓰다보면 맨날 기본설정 자동으로 다 해줘서 403 스테이터스를 보게 되는데..
시큐리티를 한 줄로 없애주는 설정.
@SpringBootApplication(exclude = SecurityAutoConfiguration.class) // Spring Security 인증 기능 제외
public class SpringAuthApplication {
public static void main(String[] args) {
SpringApplication.run(SpringAuthApplication.class, args);
}
}
@SpringBootApplication(exclude = SecurityAutoConfiguration.class)
exclude 를 이용하면 됐었다.. 이걸 이제 알았네 ㅠㅠ
반응형
'TIL ✍️' 카테고리의 다른 글
23년 11월 21일(화요일) - 36번째 TIL (1) | 2023.11.21 |
---|---|
23년 11월 20일(월요일) - 35번째 TIL (0) | 2023.11.20 |
23년 11월 16일(목요일) - 33번째 TIL (0) | 2023.11.16 |
23년 11월 14일(화요일) - 32번째 TIL (0) | 2023.11.14 |
23년 11월 13일(월요일) - 31번째 TIL (1) | 2023.11.13 |