Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
EclipseLink/UserGuide/JPA/Advanced JPA Development/NoSQL/Mappings
For current information, please see "Using EclipseLink with NoSQL Databases in the EclipseLink Solutions Guide: http://www.eclipse.org/eclipselink/documentation/latest/solutions/nonrelational_db.htm
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
Mapping
NoSql maps objects to structured data such as XML or JSON. NoSql supports embedded data and embedded collections.
NoSql supports all of the existing JPA mapping annotations and XML. @Column
and @JoinColumn
should not be used, instead @Field
and @JoinField
should be used. @JoinTable
and @CollectionTable
are not supported, or required.
Id
Any entity object must define an Id. The Id is used by EclipseLink for caching, object identity and to unique identify an object in the data-store. NoSQL databases may have a concept of an Id, or may not. The @GeneratedValue
option is supported with NoSql. It maps to whatever id generator the NoSQL database provides, and if none is provided it makes use of a UUID. A UUID generated id must be declared as either a String
or byte[]
.
MongoDB - every document is required to have an
_id
field. If the document does not have the field, then one will be generated by the database using an OID, which is similar to a UUID. An OID must be declared as either aString
orbyte[]
. The application can define its own value for the_id
, or can use a generated value. The entity Id is not required to match the MongoDB_id
, and composite IDs are supported, but this is recommended to use_id
as the Id field name.
Oracle NoSQL - defines major keys and minor keys. By default EclipseLink will create the major key as a composite key of the entity name and each of the entities Id values. Generated id values are supported using UUID.
Basic
Basic mappings for NoSql support all of the same options a regular JPA Basic mappings. Temporal types, converters, lobs, and enumerated options are supported. The @Field
annotation or <field>
XML element should be used to define the field name. The field name will be the name of the field used in the object's data structure.
XML - field name can use XPath expressions. These include using
'@'
for attributes,'/'
for nested elements,'[1]'
for positional elements, and'text()'
for element text.
Oracle NoSQL - field names map to the minor keys in the key/value store.
Embedded
Embedded mappings are supported, but are different than relational embedded mappings. The embedded object is stored nested in the parent object's data-structure, not flattened out as is the case of relational data. Embedded mappings allow a @Field
to define the field element that the embeddable's structure will be stored under. Attribute and association overrides are not supported, or required, as there is no naming conflict in two embedded objects as they are each nested under their own element.
ElementCollection
ElementCollection mappings are supported, but are different than relational ElementCollection mappings. The embeddable object or basic value is stored nested in the parent object's data-structure, not in a separate table out as is the case of relational data. ElementCollection mappings allow a @Field
to define the field element that the collection will be stored under. Attribute and association overrides are not supported, or required, as there is no naming conflict in two embedded objects as they are each nested under their own element.
Relationships
OneToOne, ManyToOne, OneToMany and ManyToMany mappings are supported. @JoinColumn
and @JoinTable
are not supported, @JoinField
should be used instead. For a OneToOne and ManyToOne the value of the target object's Id is stored. For a OneToMany and ManyToMany a nested collection of Id values are stored. The mappedBy
attribute is not supported.
It is also possible to define relationships using queries instead of storing the ids. There is no annotation or XML support for mapping queries, but they can be defined using a DescriptorCustomizer
. The query must be defined using an EISInteraction
, such as a MappedInteraction
or XMLInteraction
. How the interaction will be defined is dependent on the NoSQL platform.
NoSql Examples
The following provides mappings for an Order model. The first example uses MAPPED
data, such as mapping to a MongoDB JSON document. The second example uses XML
data, such as mapping to XML files.
NoSql MAPPED example
@Entity @NoSql(dataFormat=DataFormatType.MAPPED, dataType="orders") public class Order { @Id @GeneratedValue @Field(name="_id") private long id; @Basic @Field(name="description") private String description; @Embedded @Field(name="deliveryAddress") private Address deliveryAddress @ElementCollection @Field(name="orderLines") private List<OrderLine> orderLines; @ManyToOne @JoinField(name="customerId") private Customer customer; }
This would produce the following mapped data. The mapped format could map to many different structures, this example shows it as a JSON document.
{ "_id": "4F99702B271B1948027FAF06", "description": "widget order", "deliveryAddress": { "street": "1712 Hasting Street", "city": "Ottawa", "province": "ON", "postalCode": "L5J1H5", }, "orderLines": [ {"lineNumber": "1", "itemName": "widget A", "quantity": "5"}, {"lineNumber": "2", "itemName": "widget B", "quantity": "1"}, {"lineNumber": "3", "itemName": "widget C", "quantity": "2"} ], "customerId": "4F99702B271B1948027FAF08", }
NoSql XML example
@Entity @NoSql(dataType="order") public class Order { @Id @GeneratedValue @Field(name="@id") private long id; @Basic @Field(name="@description") private String description; @Embedded @Field(name="delivery-address") private Address deliveryAddress @ElementCollection @Field(name="orderLines/order-line") private List<OrderLine> orderLines; @ManyToOne @JoinField(name="customer-id") private Customer customer; } @Embeddable @NoSql(dataFormat=DataFormatType.MAPPED) public class OrderLine { @Field(name="@line-number") private int lineNumber; @Field(name="@item-name") private String itemName; @Field(name="@quantity") private int quantity; }
This would produce the following XML data.
<order id="4F99702B271B1948027FAF06" description="widget order"> <deliveryAddress street="1712 Hasting Street" city="Ottawa" province="ON" postalCode="L5J1H5"/> <order-lines> <order-line lineNumber="1" itemName="widget A" quantity="5"/> <order-line lineNumber="2" itemName="widget B" quantity="1"/> <order-line lineNumber="3" itemName="widget C" quantity="2"/> <order-lines> <customer-id>4F99702B271B1948027FAF08</customer-id> <order>