Search code examples
javajsonspring-bootjackson

cannot resolve symbol jsonobject in intellij


Cannot resolve image:

I am getting the error cannot resolve symbol jsonobject in intellij, shown in the attached image:Cannot resolve image, when I press Alt + Enter it does not give me the option to import class.

import org.json.JSONObject;

Solution

  • Please add this in your pom.xml file

    <!-- https://mvnrepository.com/artifact/org.json/json -->
            <dependency>
                <groupId>org.json</groupId>
                <artifactId>json</artifactId>
                <version>20190722</version>
    </dependency>