Skip to main content

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.

Jump to: navigation, search

EclipseLink/FAQ/NoSQL/MongoDB

< EclipseLink‎ | FAQ‎ | NoSQL
Revision as of 13:57, 19 March 2012 by Unnamed Poltroon (Talk)

EclipseLink's support for MongoDB includes:

  • Mapping of @Entity for root and @Embeddable for nested data
  • Mappings of type @Basic, @Embedded, @ElementCollection, @ManyToOne, @OneToOne, @OneToMany, @ManyToMany
  • Inheritance
  • Optimistic locking
  • Generated values, OIDs
  • CRUD operations (persist, merge, find, remove)
  • JPQL and Criteria API queries,
    • sub-selects, group by, and certain functions are not supported
  • JPA Query options firstResult, maxResults, fetchSize
  • MongoDB query options read-preference, write-concern, options
  • Native queries (through MongoDB's command language)

Back to the top