JAVA
[오류해결] Error: A JNI error has occurred, please check your installation and try againException in thread "main" java.lang.NoClassDefFoundError: org/json/JSONExceptio
merryna
2023. 7. 3. 13:09
반응형
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: org/json/JSONException
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
</dependency>
maven으로 json 라이브러리를 사용하고 있는데 서버에 올리니 저런 오류가 뜸.
해결 방법 )
간단하게 https://mvnrepository.com/artifact/org.json/json/20230227 에서 jar파일을 다운받아 lib 폴더에 넣어주기만 했다.
반응형