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 "Texo/Generate JPA-ORM Introduction"

(Introduction)
Line 3: Line 3:
 
== Introduction ==
 
== Introduction ==
  
With Texo you can generate an orm.xml directly from an ecore model. The orm.xml can be used to configure the persistence layer.  
+
With Texo you can generate an orm.xml directly from an ecore model. Texo supports the ORM 2.0 standard. The orm.xml can be used to configure the persistence layer.  
  
 
Texo uses EclipseLink for its testing. See here for more information on using EclipseLink and configuring EclipseLink:
 
Texo uses EclipseLink for its testing. See here for more information on using EclipseLink and configuring EclipseLink:

Revision as of 17:25, 17 May 2010

Introduction

With Texo you can generate an orm.xml directly from an ecore model. Texo supports the ORM 2.0 standard. The orm.xml can be used to configure the persistence layer.

Texo uses EclipseLink for its testing. See here for more information on using EclipseLink and configuring EclipseLink: http://wiki.eclipse.org/EclipseLink/UserGuide

The generated orm.xml refers to the classes/java members/types as generated by Texo code generation (so taking into account any model generate annotations you have specified).

When generating the orm.xml Texo tries to make use of the default capabilities of the ORM layer. This means that only the necessary decisions (for example naming) are made by Texo. You can override/extend the generated orm.xml by specifying ORM annotations on the model. This is done in the same way as with the code generation annotations. For more information on annotations models, see here.

Generating an orm.xml

It is quite easy to generate an orm.xml from a model: right-click on the ecore model and select Texo > Generate


Org.eclipse.emf.texo.generate.orm.png


The orm.xml will be created in the same folder as the ecore file which was selected. Any existing orm.xml in that same folder will be overwritten.

Back to the top