Difference between revisions of "EclipseLink/UserGuide/JPA/NoSQL"
(→NoSQL) |
(→@NoSQL) |
||
Line 26: | Line 26: | ||
== @NoSQL == | == @NoSQL == | ||
Mapping to NoSQL data is configured through the EclipseLink <code>@NoSQL</code> annotation, and <code><no-sql></code> XML element. | Mapping to NoSQL data is configured through the EclipseLink <code>@NoSQL</code> annotation, and <code><no-sql></code> XML element. | ||
+ | @NoSQL defines the class as mapping to non-relational data. @NoSQL can be specified with @Entity or @Embeddable classes. | ||
+ | |||
+ | The @NoSQL annotation defines a <code>dataType</code> and a <code>dataFormat</code>. The dataType is name for the entities structure, the meaning of the dataType is dependent on the NoSQL platform. For MongoDB, it is the collection name that the JSON documents are stored to. For Oracle NoSQL the dataType is the first part of the major key value. For the XML file adapter it is the file name. | ||
+ | |||
+ | The dataFormat specifies the type of structure the data is stored as. | ||
+ | Three types of NoSQL data formats are supported: | ||
+ | * XML - maps a class to an XML document, this can be used with XML data-stores, XML files, XML messaging systems, and other XML systems. | ||
+ | * MAPPED - maps a class to a set of nested key/value pairs, a value can be an embedded map or list. This can be used to map to key/value stores, JSON databases, and other structured data systems. | ||
+ | * INDEXED - maps a class to an array of values. | ||
+ | |||
+ | The dataFormat is dependent on the NoSQL platform. MongoDB must use the MAPPED format. Oracle NoSQL can use either the MAPPED format for key/value data, or the XML format for a single XML document value. XML files and XML messaging use the XML format. | ||
<br> | <br> |
Revision as of 14:28, 25 April 2012
EclipseLink JPA
EclipseLink | |
Website | |
Download | |
Community | |
Mailing List • Forums • IRC • mattermost | |
Issues | |
Open • Help Wanted • Bug Day | |
Contribute | |
Browse Source |
Key API
Native API
Contents
NoSQL
NoSQL is a classification of database systems that do not support the SQL standard. These include document databases, key-value stores, and various other non-standard databases. EclipseLink supports persistence of Java objects to NoSQL databases through the Java Persistence API (JPA). EclipseLink's native API is also supported with NoSQL databases.
The NoSQL classification can also be expanded to include Enterprise Information Systems (EIS) including application databases, legacy databases, messaging systems, and transaction processing monitors.
EclipseLink's NoSQL support includes:
- MongoDB
- Oracle NoSQL
- XML files
- JMS
- Oracle AQ
@NoSQL
Mapping to NoSQL data is configured through the EclipseLink @NoSQL
annotation, and <no-sql>
XML element.
@NoSQL defines the class as mapping to non-relational data. @NoSQL can be specified with @Entity or @Embeddable classes.
The @NoSQL annotation defines a dataType
and a dataFormat
. The dataType is name for the entities structure, the meaning of the dataType is dependent on the NoSQL platform. For MongoDB, it is the collection name that the JSON documents are stored to. For Oracle NoSQL the dataType is the first part of the major key value. For the XML file adapter it is the file name.
The dataFormat specifies the type of structure the data is stored as. Three types of NoSQL data formats are supported:
- XML - maps a class to an XML document, this can be used with XML data-stores, XML files, XML messaging systems, and other XML systems.
- MAPPED - maps a class to a set of nested key/value pairs, a value can be an embedded map or list. This can be used to map to key/value stores, JSON databases, and other structured data systems.
- INDEXED - maps a class to an array of values.
The dataFormat is dependent on the NoSQL platform. MongoDB must use the MAPPED format. Oracle NoSQL can use either the MAPPED format for key/value data, or the XML format for a single XML document value. XML files and XML messaging use the XML format.