해결된 질문
작성
·
987
0
답변 7
4
스프링 부트 자체 버그 입니다.
https://stackoverflow.com/questions/70270993/error-response-body-is-empty-in-spring-boot-2-6
스프링 부트 버전 강의와 같이 바꿔주시고 하면 해결됩니다!
1
https://github.com/spring-projects/spring-boot/issues/28953
원래 그렇게 만든거 같슴다.
2.7.2에서도 안되던데, 찾아보니까 위 링크에 나온 방법으로 해결했슴다.
강의 기준, SecurityConfig.java에서
@Override
public void configure(WebSecurity web) throws Exception {
web
.ignoring()
.antMatchers(
"/h2-console/**",
"/favicon.ico",
"/error"
);
}
"/error"를 추가하면 잘 나옵니다.
1
쏘옹님 말대로 build.gradle 맨 윗줄 스프링 부트
버전을 낮췄더니 해결됐네요
id 'org.springframework.boot' version '2.4.1'
0
안녕하세요 🙂
Spring Boot 3.4.0 (SNAPSHOT) 버전에 맞춰 샘플 코드를 업데이트했습니다.
아래 링크에서 Java와 Kotlin 버전의 최신 샘플 코드를 확인하실 수 있으니 참고 부탁드립니다.
Java : https://github.com/SilverNine/spring-boot-jwt-tutorial
Kotlin : https://github.com/SilverNine/spring-boot-jwt-tutorial-kotlin
0
0
0