반응형 오류14 [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. [Spring] java.lang.IllegalArgumentException: Name for argument of type 에러 해결 방법 🚨 application run 시 발생한 에러 메시지java.lang.IllegalArgumentException: Name for argument of type [com.example.demo.domain.type.SearchType] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. ❓에러 발생 이유build를 인텔리제이로 해서 발생한 에러 메시지 입니다.인텔리제이에서 빌드할 때는 -parameters' 플래그가 기본적으로 사용되지 않을 수 있습니다. ✅ 해결 방법인텔리제이에서 Build를 Gradle로 변경해줍니다... 2024. 4. 10. [Spring][Postman] Could not send request 오류 해결 방법 🚨 Postman send 버튼 클릭시 발생한 에러 메시지Could not send request Error ❓ 에러 발생 이유Server 즉, Spring이 실행되지 않은 상태라서 나타나는 메시지입니다.참고: Spring의 에러일 경우에는 보통은 Json 형태로 에러 메시지가 출력됩니다.위와 같은 경우에는 Spring 에러가 아닌 Postman의 에러입니다. ✅ 해결 방법Spring을 실행시킵니다. 🌟 정상 응답 2023. 8. 24. [Flutter][VSC]No suitable Android AVD system images are available 에러 해결 방법 🚨 Visual Studio Code에서 Flutter 에뮬레이터 실행시 발생한 에러 메시지No suitable Android AVD system images are available. You may need to install these using sdkmanager, for example: sdkmanager "system-images;android-27;google_apis_playstore;x86" ❓ 에러 발생 이유생성되어 있는 AVD가 없거나 설치되어 있는 system image가 없어서 발생하는 에러 메시지입니다. ✅ 해결 방법 Android Studio에서 system image를 설치해 주고 avd를 생성해 주면 됩니다.아래 설치 및 설명문을 참고해 주세요.1. Android Stud.. 2023. 8. 21. 이전 1 2 3 4 다음 반응형