Eclipse .classpath / .프로젝트 파일에는 무엇이 있습니까?
최근 팀원 중 한 명을 위한 이클립스 프로젝트에 문제가 있었습니다.Tomcat이 응용 프로그램의 JAR을 배포하지 않았습니다.
는 마침내 그 사실을 ..classpath
Eclipse 파일은 프로젝트가 정상인 팀원들과 같지 않았습니다.we체 the the the the the the 를 교체했습니다..classpath
톰캣.
단지 궁금해서, 그리고 미래에 문제가 생겼을 때 무엇을 봐야 하는지, 그리고 파일 안에 무엇이 있는지 알고 싶어서요. 내가 거기에 무엇을 추가할 수 있을까? 이게 다 무슨 뜻일까?
Eclipse는 플러그인을 위한 런타임 환경입니다.Eclipse에서 볼 수 있는 거의 모든 것은 Eclipse 자체보다는 Eclipse에 설치된 플러그인의 결과입니다.
.project
파일은 핵심 Eclipse 플랫폼에 의해 유지 관리되며, 목표는 플러그인에 의존하지 않는 일반적인 Eclipse 뷰에서 프로젝트를 설명하는 것입니다.에는 어떤 요?워크스페이스의 다른 프로젝트에는 어떤 것이 있습니까?뿐만 아니라 의 프로젝트에도 되어 있습니다.) ('빌드'라는 개념은 프로젝트에만 국한되지 않습니다.) ('빌드'라는 개념이 있습니다.)
.classpath
파일은 Eclipse의 JDT 기능(플러그인 세트 포함)으로 유지 관리됩니다.JDT는 프로젝트 내에서 이러한 "메타" 파일을 여러 개 보유하고 있습니다( 참조)..settings
내 );;;;;;;;;;;.classpath
파일도 그 중 하나일 뿐입니다. 「」입니다..classpath
파일에는 프로젝트의 소스 폴더(즉, 컴파일 대상), 출력 폴더(컴파일 대상) 및 클래스 경로 항목(작업영역의 다른 프로젝트, 파일 시스템의 임의 JAR 파일 등)과 같은 JDT 기능이 프로젝트를 올바르게 컴파일하기 위해 필요한 정보가 포함되어 있습니다.
이러한 파일을 기계 간에 무작정 복사하는 것은 위험할 수 있습니다.들어 패스에 되어 있는 ), JAR 는 「」( 「」, 「」)를 참조합니다..classpath
파일은 이식 불가능으로 렌더링되며 이식 가능하려면 수정해야 합니다. 보증하기 수 몇 ..classpath
파일 이식성
.project
When a project is created in the workspace, a project description file is automatically generated that describes the project. The sole purpose of this file is to make the project self-describing, so that a project that is zipped up or released to a server can be correctly recreated in another workspace.
.classpath
Classpath specifies which Java source files and resource files in a project are considered by the Java builder and specifies how to find types outside of the project. The Java builder compiles the Java source files into the output folder and also copies the resources into it.
Complete reference is not available for the mentioned files, as they are extensible by various plug-ins.
Basically, .project files store project-settings, such as builder and project nature settings, while .classpath files define the classpath to use during running. The classpath files contains src and target entries that correspond with folders in the project; the con entries are used to describe some kind of "virtual" entries, such as the JVM libs or in case of eclipse plug-ins dependencies (normal Java project dependencies are displayed differently, using a special src entry).
이 일식 문서에는 마크업에 대한 자세한 내용이 포함되어 있습니다..project
file: 프로젝트 설명 파일
에 대해 설명하겠습니다..project
파일 이름:
When a project is created in the workspace, a project description file is automatically generated that describes the project. The purpose of this file is to make the project self-describing, so that a project that is zipped up or released to a server can be correctly recreated in another workspace. This file is always called ".project"
ReferenceURL : https://stackoverflow.com/questions/7186676/whats-in-an-eclipse-classpath-project-file
'programing' 카테고리의 다른 글
Java -D 명령줄 매개 변수의 올바른 사용 (0) | 2022.08.11 |
---|---|
오류: 'optionalChaining' 실험 구문은 현재 지원되지 않지만 다음과 같습니다. (0) | 2022.08.11 |
java.util 입니다.정말 그렇게 무작위로요?52! (팩토리얼) 가능한 시퀀스를 생성하려면 어떻게 해야 합니까? (0) | 2022.08.11 |
npm 빌드 실행 후 vuejs 빈 페이지 (0) | 2022.08.11 |
소켓 라이브러리에서 recv를 호출할 때 사용하는 recv 버퍼 크기 (0) | 2022.08.11 |