개발

Java, Ant | An internal error occurred during: "Launching (프로젝트 이름) build.xml".java.lang.NullPointerException

AM0530 2021. 4. 26. 09:40

1. 오류상황 : Java 프로젝트 실행시 해당 오류 뜨면서 실행되지 않음 

(원래 잘 실행되던 프로젝트였고, 해당 오류전에 Java 1.8을 삭제했다가 재설치함) 

// 오류문구1 : 
 Errors occurred during the build. 
 Errors running builder 'Integrated External Tool Builder' on project '(프로젝트 이름)'. 
 The builder launch configuration could not be found. 
 The builder launch configuration could not be found. 
 
// 오류문구2 : 
An internal error occurred during: "Launching (프로젝트 이름) build.xml".
java.lang.NullPointerException

 

2. 오류해결 : 

(* Ant로 빌드하는 경우)

Ant > build 파일 우클릭 > Run As > External Tools Configurations 클릭 

(Ant 탭이 없는경우 이클립스 상단의 Window > ShowView > Other에서 Ant 검색하여 추가가능) 

 

상단의 JRE탭 > Runtime JRE : > Separate JRE : 에서 jdk1.8.0_291 선택> [Run] 클릭 

이렇게 Ant의 JRE를 다시 설정해주면 정상 실행된다.