How To Import Library Into Jdeveloper Upd May 2026

Use for libraries like JDBC drivers or common frameworks used across many applications.


JDeveloper 12c has built-in Maven support (disabled by default).


  • Click OKOK.
  • 1. Open Project Properties

    2. Navigate to Libraries and Classpath

    3. Add the Library

    4. Locate the JAR File

    5. Confirm and Apply

    6. Verify


    When you import via Update Center:

    For manual JAR imports:


    Best practice for teams. This creates a named "Library" definition that can be shared across multiple projects.

    Step 1: Open Default Project Properties

    Step 2: Create a New Library Definition

    Step 3: Name the Library

    Step 4: Add the JAR(s)

    Step 5: Finalize


  • EARs: For enterprise apps, include shared libraries in the EAR's lib directory or reference modules that include them.
  • If relying on an application server provided library (e.g., servlet-api.jar), do NOT include duplicates; instead mark the dependency as provided to avoid classloader conflicts.
  • For native libraries (DLL/.so), ensure they are available on the host OS library path or packaged and loaded via System.loadLibrary with correct extraction at runtime.