Programing

IntelliJ에서 컴파일 오류 목록을 보는 방법은 무엇입니까?

lottogame 2020. 6. 2. 21:17
반응형

IntelliJ에서 컴파일 오류 목록을 보는 방법은 무엇입니까?


Eclipse에서 표시되는 방식과 유사한 IntelliJ의 모든 컴파일 오류를 보는 방법을 찾고 있습니다. 여기와 Google에서 검색을 시도했지만 실제로 해결책을 찾지 못했습니다. 나는 IntelliJ를 정말로 좋아하고, 최근에 Eclipse에서 그것을 변환했으며, 이것이 내가 놓친 것이지 근본적인 결함이 아닌 것이기를 바랍니다.


나는 이것이 당신이 원하는 것에 가장 가깝다고 생각합니다.

( Eclipse 사용자를위한 IntelliJ IDEA Q & A에서 ) :

여기에 이미지 설명을 입력하십시오

위의 컴파일러 설정에서 최근에 소개 된 옵션과 결합하여 Eclipse와 매우 유사한 뷰를 얻을 수 있습니다.

해야 할 일:

  1. 프로젝트 창에서 '문제점'보기로 전환하십시오.

    여기에 이미지 설명을 입력하십시오

  2. 프로젝트를 자동으로 컴파일하도록 설정을 활성화하십시오.

    여기에 이미지 설명을 입력하십시오

  3. 마지막으로 문제점보기를보십시오.

    여기에 이미지 설명을 입력하십시오

다음은 Intellij IDEA 13.xx와 Eclipse Kepler에서 동일한 프로젝트 (컴파일 오류 포함)가 어떻게 보이는지 비교 한 것입니다.

여기에 이미지 설명을 입력하십시오

여기에 이미지 설명을 입력하십시오

관련 링크 : 위의 maven 프로젝트 : https://github.com/ajorpheus/CompileTimeErrors
FAQ 'Eclipse Mode'/ 'Automatically Compile'프로젝트의 경우 : http://devnet.jetbrains.com/docs/DOC-1122


이 문제를 겪는 다른 사람을위한 최신 답변 :

( https://www.jetbrains.com/help/idea/eclipse.html § 자동 컴파일; 스크린 샷 클릭)

자동 컴파일

자동 컴파일을 활성화하려면 설정 / 기본 설정 | 빌드, 실행, 배포 | 컴파일러프로젝트 자동 빌드 옵션을 선택하십시오.

한 곳에 모든 오류를 표시하십시오.

The Problems tool window appears if the Make project automatically option is enabled in the Compiler settings. It shows a list of problems that were detected on project compilation.

Use the Eclipse compiler: This is actually bundled in IntelliJ. It gives much more useful error messages, in my opinion, and, according to this blog, it's much faster since it was designed to run in the background of an IDE and uses incremental compilation.

While Eclipse uses its own compiler, IntelliJ IDEA uses the javac compiler bundled with the project JDK. If you must use the Eclipse compiler, navigate to Settings/Preferences | Build, Execution, Deployment | Compiler | Java Compiler and select it... The biggest difference between the Eclipse and javac compilers is that the Eclipse compiler is more tolerant to errors, and sometimes lets you run code that doesn't compile.


On my system (IntelliJ Idea 2017.2.5), it was not sufficient to enable "Make Project Automatically". I also had to use the menu item "View, Tool Windows, Problems" to see the problems tool window at the bottom of the screen.

문제 도구 창 열기

참고URL : https://stackoverflow.com/questions/19364949/how-to-view-the-list-of-compile-errors-in-intellij

반응형