반응형

Java 소스를 구동하던 중 NestableRuntimeException 이 발생하였습니다.

문제는 아차피에서 제공하는 commons의 lang jar가 없어서 생기는 문제입니다.

java.lang.NoClassDefFoundError: org/apache/commons/lang/exception/NestableRuntimeException

위의 문제를 해결하기 위해서는 아파치 홈페이지에서 해당 라이브러리를 설치하면 됩니다.

 

소스 구동 중 에러가 발생한 모습입니다.

 

https://commons.apache.org/proper/commons-lang/download_lang.cgi

 

Lang – Download Apache Commons Lang

Download Apache Commons Lang Using a Mirror We recommend you use a mirror to download our release builds, but you must verify the integrity of the downloaded files using signatures downloaded from our main distribution directories. Recent releases (48 hour

commons.apache.org

위의 아파치 서버에 접속합니다.

 

사용하려는 Java 버전에 맞게 준비된 lang.jar 파일을 받아 주시면 됩니다.

저는 2.6 버전을 다운로드하였습니다.

 

zip 파일로 되어 있기 때문에 압축을 풀어줍니다.

그리고 Java프로젝트에 우클릭 Build Path -> Configure Build Path

Add External JARs를 통해 해당 라이브러리를 추가해 주시면 됩니다.

반응형

+ Recent posts