반응형 전체 글141 [ Spring ] TransientPropertyValueException 에러 해결 방법 💥 application run 시 발생한 에러 메시지Error creating bean with name 'initDb': Invocation of init method failedCaused by: java.lang.IllegalStateException: org.hibernate.TransientPropertyValueException: object references an unsaved transient instance - save the transient instance before flushing : jpabook.jpashop.domain.OrderItem.item -> jpabook.jpashop.domain.item.ItemCaused by: org.hibernate.TransientP.. 2024. 5. 20. [MySQL] Error Code:3730. Cannot drop table 오류 해결 방법 🚨 MySQL drop table 시 발생한 에러 메시지Error Code:3730. Cannot drop table '테이블명'... ❓에러 발생 이유A테이블을 참조하고 있는 B테이블이(FK) 존재하여 A테이블이 삭제되지 않는 상황입니다. ✅ 해결 방법A테이블을 삭제하는 방법은 2가지 입니다.1. B테이블을 삭제한 후 A테이블을 삭제2. FK 설정 비활성화 후 A테이블을 삭제아래 SQL문을 확인해 주세요. B테이블을 삭제한 후 A테이블을 삭제A테이블을 참조하고 있는 B테이블 삭제drop table 'B테이블';A테이블 삭제drop table 'A테이블'; FK 설정 비활성화 후 A테이블을 삭제# FK 설정 비활성화SET foreign_key_checks = 0;# A테이블 삭제drop table '.. 2024. 4. 15. [QueryDSL] Parameter 0 of constructor in ArticleRepositoryCustomImpl required a bean of type 'java.lang.Class' that could not be found. 에러 해결 방법 🚨 Application run 시 발생한 에러 메시지Description:Parameter 0 of constructor in com.example.demo.repository.querydsl.ArticleRepositoryCustomImpl required a bean of type 'java.lang.Class' that could not be found.Action:Consider defining a bean of type 'java.lang.Class' in your configuration. ❓에러 발생 이유해당 문구는 Spring이 실행되면서 java 파일이 bean 등록이 되지 않았을 때 나타나는 에러 메시지입니다.저의 경우에는 QueryDSL을 사용한 ArticleRepositoryCu.. 2024. 4. 10. [QueryDSL][Spring] attempt to recreate a file for type qclass 에러 해결 방법 🚨 build 시 발생한 에러 메시지attempt to recreate a file for type qclass ❓에러 발생 이유QueryDSL의 QClass 파일의 중복 문제로 발생한 에러입니다. ✅ 해결 방법해당 프로젝트의 build 폴더를 삭제 후 프로젝트를 다시 build 해주면기존 QClass 파일들이 삭제되며, 새로운 QClass 파일들을 생성합니다.따라서 QClass 파일의 중복 문제를 해결할 수 있습니다.즉, build clean 버튼을 클릭 후 build 버튼을 클릭하면 됩니다.아래 이미지를 참고해 주세요. build clean -> build참고: clean 버튼이 없거나, clean 버튼을 클릭하여도 해당 오류가 발생하게 되는 경우에는 Spring의 QueryDSL 설정이 잘못되어 .. 2024. 4. 10. 이전 1 ··· 8 9 10 11 12 13 14 ··· 36 다음 반응형