[Eclipse error] import 에러 : No projects are found to import
2022. 8. 5. 20:48
IDE/Eclipse
import 에러 : No projects are found to import import 인식을 못해서 위와 같은 에러가 뜨는 경우가 있음 💡 해결 방법 File > Open Projects from File System에서 폴더 가져오기
[Eclipse] 프로젝트가 인식되지 않는 오류
2022. 2. 28. 20:36
IDE/Eclipse
The project description file (.project) for '프로젝트이름' is missing. This file contains important information about the project. The project will not function properly until this file is restored. 1️⃣ .metadata/.plugins/org.eclipse.core.resources를 삭제 2️⃣ 다시 import하기 이게 안 먹히는 경우😥 이클립스에서 폴더를 삭제하고 다시 import 하거나 새로 생성하기 이때는 local에서 파일 삭제를 같이 진행해서 날려줘야 함(백업은 필수)
[Eclipse] errors running builder 'integrated external tool builder' 에러 해결
2022. 2. 17. 20:28
IDE/Eclipse
Errors running builder 'integrated external tool builder' 프로젝트 오른쪽 클릭 -> properties -> builders -> 엑박이 떠있는 builder 삭제
[Eclipse] Error running builder "Integrated External Tool Builder" on project 해결 방법
2022. 2. 4. 20:44
IDE/Eclipse
Error running builder "Integrated External Tool Builder" on project 해결 방법 이클립스 빌드시에 위와 같은 에러가 발생하면 프로젝트 우클릭 👉 properties 클릭 👉 Builders 클릭 👉 엑박 뜨는 builder 삭제
디버깅 시 JDI thread evaluations has encountered a problem 해결 방법
2022. 1. 18. 20:52
IDE/Eclipse
JDI thread evaluations has encountered a problem 에러 Watch 화면에서 값을 잡고 있어서 문제가 됨 해결 방법 우클릭 하여 Remove 혹은 Remove All을 통해 값을 정리 해주면 됨
Web App Libraries가 잘 안잡힌 경우(java)
2021. 12. 13. 20:00
IDE/Eclipse
Java Build Path > Libraries > Web App Libraries가 잘 안잡힌 경우 1️⃣ 프로젝트 우클릭 > Properties > Deployment Assembly > Add > Java Build Path Entries > Maven Dependencies 선택 2️⃣ 프로젝트 우클릭 > Properties > Java Build Path > Libraries > Add Library... > Maven Managed Dependencies 선택 3️⃣ 만약 메이븐 프로젝트가 아닌 경우 프로젝트 우클릭 > Maven > Update Project... 클릭 이때 force Update 해주기
이클립스 실행 오류
2021. 9. 17. 20:15
IDE/Eclipse
A java Runtime Environment(JRE) or Java Development Kit(JDK) must be available in order to run Eclipe. 아래의 오류가 뜨는 경우 잘못 설정된 jdk 경로 혹은 버젼를 변경해주면 됨 1️⃣ jdk를 다운받은 위치를 찾아 복사하기(혹은 버젼 확인하기) 2️⃣ 이클립스 폴더에 들어가 아래의 ini파일을 메모장으로 열기 3️⃣ -vm 밑에 jdk 경로 혹은 버전을 내 컴퓨터 환경의 jdk와 맞춰줌 4️⃣ 변경 완료(버젼 변경)
이클립스 공백 빼고 비교하기
2021. 9. 15. 20:17
IDE/Eclipse
이클립스 공백 무시하고 비교하기 SVN 비교 시 공백 자동 제거로 인해 수정된 부분이 많이 발생하는 경우가 있음 자동 공백 설정이 된 버젼이 있어(나의 경우 전자정부프레임워크 3.8) 파일 비교 시 수정된 부분이 많이 발생함 이러한 경우 공백을 무시하고 파일을 비교하는 설정을 해주면 됨 Window > Preferences > General > Compare/patch 클릭 Ignore white space 체크 해주기🙌