Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Creating a Descriptor (ELUG)"

m (New page: <div style="float:right;border:1px solid #000000;padding:5px">__TOC__ Related Topics</div> This section describes how to create Eclip...)
 
m
Line 1: Line 1:
 
<div style="float:right;border:1px solid #000000;padding:5px">__TOC__
 
<div style="float:right;border:1px solid #000000;padding:5px">__TOC__
 
[[Special:Whatlinkshere/Creating a Descriptor (ELUG)|Related Topics]]</div>
 
[[Special:Whatlinkshere/Creating a Descriptor (ELUG)|Related Topics]]</div>
This section describes how to create EclipseLink descriptors.
+
This section describes how to create EclipseLink descriptors. For information on creating different types of descriptors, see the following:
 
+
 
+
==Introduction to Descriptor Creation==
+
For information on creating different types of descriptors, see the following:
+
 
* [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating a Relational Descriptor]]
 
* [[Creating%20a%20Relational%20Descriptor%20(ELUG)|Creating a Relational Descriptor]]
 
* [[Creating%20an%20EIS%20Descriptor%20(ELUG)|Creating an EIS Descriptor]]
 
* [[Creating%20an%20EIS%20Descriptor%20(ELUG)|Creating an EIS Descriptor]]
Line 21: Line 17:
 
You can validate descriptors in the following ways:
 
You can validate descriptors in the following ways:
 
* Run the project in a test environment and watch for and interpret any exceptions that occur.
 
* Run the project in a test environment and watch for and interpret any exceptions that occur.
* Run the EclipseLink integrity checker. For more information, see [[Introduction%20to%20EclipseLink%20Sessions%20(ELUG)|Integrity Checker]].
+
* Run the EclipseLink integrity checker. For more information, see [[Introduction%20to%20EclipseLink%20Sessions%20(ELUG)#Integrity Checker|Integrity Checker]].
* Review the project status report. For more information, see [[Creating%20a%20Project%20(ELUG)|How to Generate the Project Status Report]].
+
* Review the project status report. For more information, see [[Creating%20a%20Project%20(ELUG)#How to Generate the Project Status Report|How to Generate the Project Status Report]].
  
  
Line 31: Line 27:
 
Alternatively, for relational projects only, you can export a EclipseLink project as a Java class (<tt>org.eclipse.persistence.sessions.Project</tt>) that contains all descriptor configuration in Java. This lets you use Workbench to quickly create and configure descriptors, and then, manually code features that Workbench does not support. This gives you the best of both Workbench and Java access to your descriptors. After configuring your Java project class, compile it and include it in your application's JAR file.
 
Alternatively, for relational projects only, you can export a EclipseLink project as a Java class (<tt>org.eclipse.persistence.sessions.Project</tt>) that contains all descriptor configuration in Java. This lets you use Workbench to quickly create and configure descriptors, and then, manually code features that Workbench does not support. This gives you the best of both Workbench and Java access to your descriptors. After configuring your Java project class, compile it and include it in your application's JAR file.
  
For more information, see [[Creating%20a%20Relational%20Project%20(ELUG)|How to Export Project Java Source Using Workbench]].
+
For more information, see [[Creating%20a%20Relational%20Project%20(ELUG)#How to Export Project Java Source Using Workbench|How to Export Project Java Source Using Workbench]].
  
  

Revision as of 16:28, 11 December 2007

This section describes how to create EclipseLink descriptors. For information on creating different types of descriptors, see the following:

After you create a descriptor, you must configure its various options (see Configuring a Descriptor) and use it to define mappings.

For complete information on the various types of mapping that EclipseLink supports, see Introduction to Mappings and Creating a Mapping.

For complete information on the various types of descriptor that EclipseLink supports, see Descriptor Types.


Validating Descriptors

You can validate descriptors in the following ways:


Generating Java Code for Descriptors

Typically, you capture descriptor configuration in the project.xml file and the EclipseLink runtime reads this information, and then creates and configures all necessary descriptor objects.

Alternatively, for relational projects only, you can export a EclipseLink project as a Java class (org.eclipse.persistence.sessions.Project) that contains all descriptor configuration in Java. This lets you use Workbench to quickly create and configure descriptors, and then, manually code features that Workbench does not support. This gives you the best of both Workbench and Java access to your descriptors. After configuring your Java project class, compile it and include it in your application's JAR file.

For more information, see How to Export Project Java Source Using Workbench.



Copyright Statement

Back to the top