1. project sdk is not defined intellij


자바에 경우 프로젝트에 적용한 JDK 버전 설정


메인메뉴 > select File | Project Structure

(Ctrl+Shift+Alt+S)


Project SDK(ex: java 12) 잡아준다.


(https://www.jetbrains.com/help/idea/sdk.html)



2. Cannot run git file not found git.exe


Git 설치 안되어있을때 발생


VSC  | CheckOut from Version Control | Git | Clone Repository | Test


Git 다운로드 하고 Intellij 재시작한다.


(https://git-scm.com/download/win)



3. IntelliJ IDEA to show folders instead of packages in project view


왼쪽 프로젝트 디렉토리에서 패키지 구조로 프로젝트가 보여지는 것 > 폴더 형식으로 보이게 하기

 

For expanding folders uncheck Compact Empty Middle Packages


왼쪽 프로젝트 디렉토리 > 톱니바퀴 > [Compact Empty Middle Packages 체크 해제]


(https://stackoverflow.com/questions/10412473/intellij-idea-folders-instead-of-packages-in-project-view)



4. build.gradle 


build.gradle 파일을 Import Gradle Project 해주고

파일이 수정되면 dependencies의 Run 'build' 를 다시 해줘야 한다.



5. Enable annotation processing


lombok과 같은 플러그인 설치 후 

해당 플러그인에서 사용하는 어노테이션 적용 시 어노테이션이 잘 적용되도록 설정해야 한다.


Build, Execution, Deployment | Compiler | Annotation Processors | Enable annotation processiong 체크



6. intelliJ multiple window


eclipse처럼 다중 프로젝트를 추가하고 싶을때 


https://stackoverflow.com/questions/8774024/intellij-working-on-multiple-projects

+ Recent posts