Dali Java Persistence Tools User Guide Release 3.2 Release 3.2 |
|
Synchronizing classes |
Specifying additional tables |
Home > User Guide > Tasks > Managing the orm.xml file
When creating a JPA project, (see "Creating a new JPA project") you can also create the orm.xml
file that defines the mapping metadata and defaults.
Eclipse creates the META-INF\orm.xml
file in your project's directory:
Example 3-2 Sample orm.xml File
<?xml version="1.0" encoding="UTF-8"?> <persistence version="<PERSISTENCE_VERSION>" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"> <persistence-unit name="<PERSISTENCE_UNIT_NAME>"> <provider="<PERSISTENCE_PROVIDER>" /> </persistence-unit> </persistence>
Related reference
Related tasks
Related concepts
If you opt not to create an orm.xml
file when you create a JPA project, you can create one using the Create ORM Mapping File wizard.
Use this procedure to create an orm.xml
file:
From the Navigator or Project Explorer, select File > New > Other. The Select a Wizard dialog appears.
Select JPA ORM Mapping File and then click Next. The Mapping File page of the Create ORM Mapping File wizard appears.
If you are using EclipseLink, you can select EclipseLink > EclipseLink ORM Mapping File.
Select the name and location of your mapping file and click Next. The Mapping File Options page appears.
Define the properties in the Mapping File Options page and click Finish. The orm.xml
file appears in the src
directory of the selected JPA project. You can manage the orm.xml
file using the JPA Details view or through the XML Editor. See also JPA Details view (for orm.xml).
Related reference
Related tasks
Related concepts
You can work with the orm.xml
by using the JPA Details view.
Use this procedure to work with the orm.xml
file:
Right-click the orm.xml
file in the Project Explorer and select Open.
In the JPA Structure view, select EntityMappings.
Use the JPA Details view to configure the entity mapping and persistence unit defaults.
Complete the fields on the JPA Details view (for orm.xml).
Related reference
Related tasks
Related concepts