programing tip

Eclipse의 유효성 검사에서 특정 폴더 또는 파일을 제외하는 방법은 무엇입니까?

itbloger 2020. 8. 22. 08:17
반응형

Eclipse의 유효성 검사에서 특정 폴더 또는 파일을 제외하는 방법은 무엇입니까?


우리는 우리의 응용 프로그램이 그것들을 처리 할 수 ​​있는지 확인하기 위해 단위 테스트에 사용되는 많은 잘못된 XML 파일을 가지고 있습니다.

Eclipse는이 XML 파일을 오류로 표시하여 "문제보기"를 오염시킵니다.

Eclipse 유효성 검사기에서 특정 폴더를 제외하는 방법이 있습니까?


창> 환경 설정의 유효성 검사 섹션에서 설정 (...) 열에 다른 규칙을 추가 할 수 있으며, XML 유형에 대한 제외 그룹에 "폴더 또는 파일 이름 규칙"을 추가 할 수 있습니다.


이것은 프로젝트의 유효성 검사에서 폴더를 제외하기 위해 수행하는 작업입니다. 나를 위해 이것은 자바 스크립트 및 기타 경고 / 오류에서 작동합니다.

  • 폴더를 마우스 오른쪽 버튼으로 클릭
  • Resource, ResourceFilters를 클릭하십시오.
  • "추가"를 클릭하십시오.
  • 다음 모두 제외, 파일 및 폴더, 모든 하위 항목을 설정하고 파일 및 폴더 속성 입력 필드에 별표 (*)를 추가합니다 (아래 이미지에서 강조 표시됨).

참고 : Eclipse Indigo에서는 폴더를 마우스 오른쪽 단추로 클릭하고 속성을 선택한 다음 왼쪽 탐색에서 리소스를 선택해야합니다.

여기에 이미지 설명 입력


  1. Window> Preference> Validation으로 이동합니다.
  2. 비활성화하려는 유효성 검사 유형 (예 : XML)을 찾습니다.
  3. 마우스 오른쪽 버튼으로 클릭하고 "설정"을 선택합니다.

Eclipse 유효성 검사

  1. "그룹 제외"에서 "규칙 추가"를 클릭하고 "폴더 또는 파일 이름"을 선택합니다.

여기에 이미지 설명 입력


Angular-Project에서 Eclipse 2018-12를 사용하면 폴더에서 von 유효성 검사 오류를 제거 할 수있었습니다. npm은 폴더 node_modules를 선택하고 "Resource"아래에서 "Derived"체크 표시를 확인하는 것만으로 (예 :) 생성 합니다.

eclipse- "Resource"에서 "Derived"체크 표시를 선택하여 폴더에 대한 유효성 검사를 무시합니다.

프로젝트 후-> 오류 정리가 사라졌습니다.


Note: I got here because I was searching for an easy way to exclude specific folders from validation in Eclipse. My answer does not work for the specific case detailed in the question (which is about hiding invalid XML files from validation).

How to exclude specific folders or files from validation in Eclipse?

When the folders is in the build path, and when the annoying issues are only warnings, there is a way that is straight forward:

  • Right Click Folder
  • Properties
  • Java Compiler
  • Check Ignore optional compile problems
  • Ok

The folders will still be validated, errors will be reported, but all the warnings will be ignored by Eclipse. For example, that's ideal for a folder of generated sources.


you may also adjust the output/view side. So go to Show-Menu of Problem-View and filter Display only for selected Items. 여기에 이미지 설명 입력

참고 URL : https://stackoverflow.com/questions/2272237/how-to-exclude-specific-folders-or-files-from-validation-in-eclipse

반응형