Spring

스프링 부트 3.3 업데이트 이후 NullPointerException UnsatisfiedDependencyException 이 발생한다면

kimc 2023. 2. 26. 03:24
반응형

 

이번 글을 통해 배워 갈 내용

  1. 스프링 부트 3.3 업데이트 이후 NullPointerException UnsatisfiedDependencyException 이 발생한다면

 

nested exception is java.lang.NullPointerException: Cannot invoke "String.contains(java.lang.CharSequence)" because "variable" is null
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'basicSecurityConfiguration' defined in file [/app/build/classes/kotlin/main/com/focused/odin/BasicSecurityConfiguration.class]: Unsatisfied dependency expressed through constructor parameter 0; 

https://github.com/spring-projects/spring-boot/issues/34363

 

NullPointerException when using Spring Data JPA native queries in Spring Boot 2.7.9 and 3.0.3 · Issue #34363 · spring-projects

My build randomly stopped working today. After a couple hours of troubleshooting looking at some useless errors, my coworkers and I figured out that updating to 2.7.9 was what broke things. (we aut...

github.com


공식 깃 이슈를 확인해 본 결과 
스프링 3.3 부트 최신 버전 관련 임시 해결책 (2023년 02월 26일 기준)은

3.2 부트 로 다운그레이드 하는 게 제일 마음이 편했습니다

 

토요일 오전 3시 반에 스터디하면서

약 1시간 정도 허비를 했습니다만 Vaundy의 BGM을 듣고 힐링했습니다

https://www.youtube.com/watch?v=mNw3o7O-AJ0 

 


참조 및 인용

https://github.com/spring-projects/spring-boot/issues/34363

 

NullPointerException when using Spring Data JPA native queries in Spring Boot 2.7.9 and 3.0.3 · Issue #34363 · spring-projects

My build randomly stopped working today. After a couple hours of troubleshooting looking at some useless errors, my coworkers and I figured out that updating to 2.7.9 was what broke things. (we aut...

github.com

 

 

 


블로그 추천 포스트

https://codemasterkimc.tistory.com/50

 

300년차 개발자의 좋은 코드 5계명 (Clean Code)

이번 글을 통해 배워갈 내용  좋은 코드(Clean Code)를 작성하기 위해 개발자로서 생각해볼 5가지 요소를 알아보겠습니다. 개요 좋은 코드란 무엇일까요? 저는 자원이 한정적인 컴퓨터 세상에서 좋

codemasterkimc.tistory.com

 

 

오늘도 즐거운 코딩 하시길 바랍니다 ~ :)

 


 

반응형