728x90
error : org.json.simple cannot be resolved
# 해결법
# build.gradle
implementation 'com.googlecode.json-simple:json-simple:1.1.1'
# build.gradle(kotlin)
implementaion("com.googlecode.json-simple:json-simple:1.1.1")
# maven
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
'error' 카테고리의 다른 글
[ERROR] error Command "react-scripts" not found. (0) | 2022.12.05 |
---|---|
[HTTP ERROR 400] 티스토리 400 에러 (0) | 2022.12.02 |
[Java error] BoardMapper 타입의 bean을 찾을 수 없습니다. 자동 주입을 할 수 없습니다. (0) | 2022.11.30 |
[JAVA ERROR] Invalid bound statement (not found): com.example.dmf.weather.service. & [Mybatis setting] (0) | 2022.11.30 |
[IntelliJ] Java file outside of source root 에러 해결법 (0) | 2022.11.24 |