EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support...

32
1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License EclipseLink: Beyond Relational and NoSQL to Polyglot and HTML5 Shaun Smith shaun.smith@oraclecom Gunnar Wagenknecht [email protected]

Transcript of EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support...

Page 1: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

EclipseLink: Beyond Relational and NoSQL to Polyglot and HTML5

Shaun Smith shaun.smith@oraclecom

Gunnar Wagenknecht [email protected]

Page 2: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

2 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 2 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

About Us

§ Shaun Smith –  Eclipse committer on EclipseLink and related projects –  Oracle TopLink Product Manager –  OO developer since 1987, so I’m old enough to know Smalltalk ;)

§ Gunnar Wagenknecht –  CTO @ AGETO –  Committer and contributor @ Eclipse –  Java since 1999; Eclipse since 2001

Page 3: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

3 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 3 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Agenda—Database to Browser (and back again) Browser

HTTP / REST

Binding Persistence XML/JSON

Java

Database Persistence Relational/NoSQL

Relational DB | NoSQL DB

Page 4: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

4 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 4 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Agenda Browser

HTTP / REST

Binding Persistence XML/JSON

Java

Database Persistence Relational/NoSQL

Relational DB | NoSQL DB

Page 5: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

5 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 5 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

NoSQL Databases

§ EclipseLink is best known for relational persistence but… § NoSQL database are increasingly popular § No common definition (document, graph, columnar)

–  Differing feature sets –  Some offer query language/API—some not

§ No standards § Every database offers a unique API

–  Cost in terms of learning –  Zero portability across databases

Page 6: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

6 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 6 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

EclipseLink NoSQL

§ Support JPA-style access to NoSQL databases –  Leverage non-relational database support for JCA (and JDBC when

available)

§ Define annotations and XML to identify NoSQL stored entities (e.g., @NoSQL)

§ Support JPQL subset for each –  Key principal: leverage what’s available

§  Initial support for MongoDB and Oracle NoSQL. § Support mixing relational and non-relational data in single composite

persistence unit (“polyglot persistence”)

Page 7: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

7 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 7 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Applicability of JPA to NoSQL

§ Core JPA concepts apply to NoSQL: –  Persistent Entities, Embeddables, ElementCollection, OneToOne,

OneToMany, ManyToOne, Version, etc.

§ Some concepts apply with some databases: –  JPQL, NamedNativeQuery

§ Pure relational concepts don’t apply: –  CollectionTable, Column, SecondaryTable,

SequenceGenerator, TableGenerator, etc.

Page 8: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

8 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 8 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Querying NoSQL with JPA

§ Two kinds of queries –  JQPL—portable query language defined by the spec –  Native query—lets you leverage database specific features –  Dynamic or static @NamedQuery

§  JPQL translated to underlying database query framework.

Page 9: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

9 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 9 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Example MongoDB Mapped Entity

Page 10: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

10 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 10 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

MongoDB Query Examples

§ JPQL    Select o from Order o where o.totalCost > 1000

Select o from Order o join o.orderLines l where l.cost > :cost

§ Native Queries    query = em.createNativeQuery( "db.ORDER.findOne({\"_id\":\"" + oid + "\"})", Order.class);

Order order = (Order) query.getSingleResult();

Page 11: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

11 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 11 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Demo EclipseLink NoSQL

Page 12: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

12 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 12 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

“…we are gearing up for a shift to polyglot persistence - where any decent sized enterprise will have a variety of different data storage technologies for different kinds of data…we'll be first asking how we want to manipulate the data and only then figuring out what technology is the best bet for it..”

Martin Fowler ThoughtWorks

Page 13: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

13 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 13 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Composite Persistence Unit Composite PU

Relational PU NoSQL PU

Page 14: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

14 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 14 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Demo Polyglot Persistence

Page 15: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

15 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 15 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Agenda Browser

HTTP / REST

Binding Persistence XML/JSON

Java

Database Persistence Relational/NoSQL

Relational DB | NoSQL DB

Page 16: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

16 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 16 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Binding Persistence

§ EclipseLink implements –  JAXB for Java/XML binding—covert Java to/from XML –  Java/JSON binding—convert Java to/from JSON

§ Currently no Java/JSON binding standard –  Java API for JSON Processing (JSR 535) is parsing, not binding

§ EclipseLink interprets JAXB XML bindings for JSON –  Content-type selectable by setting property on Marshaller/Unmarshaller

XML and JSON Binding

Page 17: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

17 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 17 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

XML and JSON from JAXB Mappings

{ "phone-numbers" : [ { "id" : 2, "num" : "512-555-9999", "type" : "mobile" } ], "address" : { "city" : "New York", "id" : 1, "street" : "Central Park East" }, "firstName" : "Woody", "id" : 1, "lastName" : “Allen" }

<?xml version="1.0" encoding="UTF-8"?> <customer> <phone-numbers> <phone-number> <id>2</id> <num>512-555-1234</num> <type>home</type> </phone-number> </phone-numbers> <address> <city>New York</city> <id>1</id> <street>Central Park East</street> </address> <firstName>Bill</firstName> <id>1</id> <lastName>Allen</lastName> </customer>

Page 18: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

18 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 18 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Challenges – Binding JPA Entities to XML/JSON

•  Bidirectional/Cyclical Relationships •  Composite Keys/Embedded Key Classes •  Byte Code Weaving

<?xml version="1.0" ?> <employee> <first>Mark</first> <last>Twain</last> <id>1</id> </employee>

JPA JAXB

Page 19: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

19 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 19 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Bidirectional Relationship @Entity public class Project{ ... @OneToMany(mappedBy=“project") private List<Employee> members;

}

@Entity public class Employee{ ... @ManyToOne private Project project;

}

Page 20: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

20 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 20 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Bidirectional Relationships in JAXB

§  JAXB specification does not support bidirectional relationships. One side must be marked @XmlTransient.

§ But that loses the relationship!

Employee Project

<?xml version="1.0" ?> <employee> <first>Mark</first> <last>Twain</last> <id>1</id> </employee>

Marshall

Employee Project

Unmarshall

X members

project project

Page 21: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

21 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 21 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

EclipseLink XmlInverseReference @Entity public class Project{ ... @OneToMany(mappedBy=“project") private List<Employee> members;

}

@Entity public class Employee{ ... @ManyToOne @XmlInverseReference(mappedBy=“members") private Project project;

}

Page 22: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

22 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 22 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

EclipseLink XmlInverseReference

§ EclipseLink restores relationships on unmarshall!

<?xml version="1.0" ?> <employee> <first>Mark</first> <last>Twain</last> <id>1</id> </employee> Marshall

Employee Project

members

project

Unmarshall

Employee Project

members

project

Page 23: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

23 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 23 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Demo JAXB/JPA Fidelity JSON Binding

Page 24: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

24 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 24 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Agenda Browser

HTTP / REST

Binding Persistence XML/JSON

Java

Database Persistence Relational/NoSQL

Relational DB | NoSQL DB

Page 25: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

25 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 25 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

JPA-RS Browser

JAX-RS / JPA-RS

Binding Persistence XML/JSON

Java

Database Persistence Relational/NoSQL

Relational DB | NoSQL DB

HTTP

Page 26: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

26 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 26 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

JPA-RS

JPA-RS

JAX-RS

Accounting PU Human Resources PU Contracting PU

...

JPA

GET http://.../persistence/Accounting/Invoice/...

JPA-RS maps URI http://.../persistence/Accounting/Invoice/... to Accounting PU and Invoice entity

JAX-RS http://.../persistence/Accounting/Invoice/... mapped to JPA-RS service

Page 27: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

27 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 27 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

JPA-RS Features § Access relational data through REST with JSON or XML § Provides REST operations for entities in persistence unit (GET, PUT,

POST, DELETE) § Automatic generation of XML and JSON bindings § Supports invocation of named queries via HTTP § Server Caching—EclipseLink clustered cache § Dynamic Persistence also supported

–  Entities defined via metadata—no Java classes required –  Enables persistence services for HTML 5/JavaScript applications

Page 28: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

28 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 28 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Resource Model & Links { "firstName": "Frank", "gender": "Male", "id": 1, "lastName": "Smith", "responsibilities": [], "salary": 1, "version": 13, "address": { "_link": { "href": "http://localhost:7001/employee.web-js/persistence/employee/entity/Address/18", "method": "GET", "rel": "self" } }, …

Page 29: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

29 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 29 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Demo EclipseLink JPA-RS

Page 30: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

30 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 30 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Releases & Roadmap

EclipseLink 2.3 Indigo

•  Tenant Isolation

•  SINGLE_TABLE •  Extensible •  External

Metadata •  Multiple DBs •  Data Partitioning

2010 2011 2012 2013 EclipseLink 2.1

Helios

•  Query Extensions •  TREAT AS •  FUNC

•  Batch IN and EXISTS

•  Attribute Group •  Load •  Fetch •  Copy •  Merge

•  eclispelink-oxm.xml

•  Dynamic MOXy

EclipseLink 2.4 Juno

•  JSON Binding •  JPA-RS •  Tenant Isolation

•  Tenant per Table/Schema

•  ALTER Schema •  NoSQL

EclipseLink 2.5 Kepler

•  JPA 2.1 •  JPA-RS++ …

Page 31: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

31 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 31 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License

Summary

§  Java is evolving—and EclipseLink is evolving too! –  JSON Binding –  JAXB/JPA Fidelity –  JPA-RS –  NoSQL –  Polyglot Persistence

Page 32: EclipseLink · EclipseLink NoSQL ! ... Initial support for MongoDB and Oracle NoSQL. ! Support mixing relational and non-relational data in single composite

32 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License 32 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License