A script-enabled browser is required for this page to function properly.

Deploying Pluggable Java Components with a Form

When you create a Pluggable Java Component (PJC) using the JDeveloper PJC Wizard, you'll need to make dependant Java Classes available at runtime for the PJC to use. These dependent classses are oracle.jdeveloper.pjc.BeanWrapper and oracle.jdeveloper.pjc.TypeConverter.

The simplest way to make them available is to include the jdev-rt.jar file along with the Custom PJC Jar file in the archive tags for your application. However, to reduce the size of the download, you can explicitly include the two required classes into your custom PJC jar file by using the JDeveloper deployment profile settings.

To include the classes:

  1. Create or edit a deployment profile to create a simple Jar file.
  2. In the Dependency Analyzer settings, select the JDeveloper Runtime node and select Add them to the dependency analyzer's classpath radio button.
    The generated jar file will then include the BeanWrapper and TypeConverter classes if they are required by the PJC.

Creating Pluggable Java Components with JDeveloper9i