I am trying to compile a Java code in PL/SQL (Toad) as Java source in Oracle Database. I have few import org. and com. statements in my code.
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Value;
import com.fasterxml.jackson.core.type.TypeReference;
I'm getting cannot find symbol error after compiling. But not getting any error for java.io.* packages.
Can you please let me know if do I need to configure anything for importing these packages?