IntelliJ 실행 시 finished with non-zero exit value
2022. 1. 9. 18:19
InteliJ
finished with non-zero exit value 인텔리제이에서 예외가 제대로 발생하지 않고 위와 같은 메시지만 출력되는 현상이 있다. 이 경우 어떤 에러가 발생했는지 알 수 없으므로 해결이 필요하다. 아래와 같이 환경설정 -> BuildTool -> gradle에서 빨간 박스를 gradle에서 IntelliJ로 변경 해주면 된다.
InteliJ에서 querydsl cannot find symbol 문제
2021. 5. 22. 15:38
InteliJ
querydsl 설정은 완벽!! 했는데도 이상하게 inteliJ에서 querydsl cannot find symbol와 같은 에러가 발생하는 경우가 있습니다. 이에 대해 설명해 보겠습니다. querydsl cannot find symbol querydsl과 관련된 파일에 대해 querydsl cannot find symbol이란 에러가 발생할 경우 이유는 세 가지가 있습니다. Q클래스가 제대로 생성이 되지 않았기 때문이기 때문에 재생성 해주면 됩니다. 아래와 같이 compileQeurydsl을 재실행 하면 재생성 됩니다. AnnotationProcess 설정 문제. 원인은 모르겠음. GradleImport에 있는 것을 전부 Default로 이동. Source Folder에 querydsl 디렉토리가 연동..