SlideShare a Scribd company logo
1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License1 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
EclipseLink: From NoSQL to HTML5
Shaun Smith
shaun.smith@oracle.com
@shaunMsmith
2 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License2 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
About Me
§  Shaun Smith
–  Eclipse committer on EclipseLink and related projects
–  Oracle TopLink Product Manager
–  OO developer since 1987
§  “Old guy who knows Smalltalk” ;-)
3 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License3 EclipseLink: From NoSQL to 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
4 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License4 EclipseLink: From NoSQL to 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
5 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License5 EclipseLink: From NoSQL to 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 databases 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 each database
–  Zero portability across databases
6 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License6 EclipseLink: From NoSQL to 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
7 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License7 EclipseLink: From NoSQL to 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.
8 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License8 EclipseLink: From NoSQL to 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.
9 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License9 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Example MongoDB Mapped Entity
10 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License10 EclipseLink: From NoSQL to 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();
11 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License11 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Demo EclipseLink NoSQL
12 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License12 EclipseLink: From NoSQL to 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
13 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License13 EclipseLink: From NoSQL to 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
14 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License14 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Demo Polyglot Persistence
15 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License15 EclipseLink: From NoSQL to 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
16 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License16 EclipseLink: From NoSQL to 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
17 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License17 EclipseLink: From NoSQL to 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>
18 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License18 EclipseLink: From NoSQL to 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
<customer>
<phone-numbers>
<phone-number>
<id>1</id>
...
<type>mobile</type>
</phone-number>
</phone-numbers>
</customer>
JPAJAXB
19 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License19 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Bidirectional Relationship
@Entity
public class Customer{
...
@OneToMany(mappedBy="owner")
private List<Phone> phones;
}
@Entity
public class Phone{
...
@ManyToOne
private Customer owner;
}
20 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License20 EclipseLink: From NoSQL to 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!
Customer Phone
<customer>
<phone-numbers>
<phone-number>
<id>1</id>
...
<type>mobile</type>
</phone-number>
</phone-numbers>
</customer>
Marshall
Customer Phone
Unmarshall
X
owner
phones phones
21 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License21 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
EclipseLink XmlInverseReference
@Entity
public class Customer{
...
@OneToMany(mappedBy=“owner")
private List<Phone> phones;
}
@Entity
public class Phone{
...
@ManyToOne
@XmlInverseReference(mappedBy=“phones")
private Customer owner;
}
22 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License22 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
EclipseLink XmlInverseReference
§  EclipseLink restores relationships on unmarshall!
<customer>
<phone-numbers>
<phone-number>
<id>1</id>
...
<type>mobile</type>
</phone-number>
</phone-numbers>
</customer>
Marshall
Customer Phone
owner
phones
Unmarshall
Customer Phone
owner
project
23 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License23 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Demo
JAXB/JPA Fidelity
JSON Binding
24 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License24 EclipseLink: From NoSQL to 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
25 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License25 EclipseLink: From NoSQL to 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
26 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License26 EclipseLink: From NoSQL to 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 PUContracting 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
27 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License27 EclipseLink: From NoSQL to 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
28 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License28 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Resource Model
JPA Entity Model
Resource
Model
29 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License29 EclipseLink: From NoSQL to 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"
}
},
…
30 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License30 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Demo EclipseLink JPA-RS
31 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License31 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
EclipseLink 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++…
32 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License32 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License
Summary
§  Java application needs are changing—and EclipseLink is evolving too!
§  Support for NoSQL and Polyglot Persistence
§  Support for building apps that go from Database to Browser
–  JSON Binding
–  JAXB/JPA Fidelity
–  JPA-RS automating RESTful persistence service

More Related Content

PDF
JSONB introduction and comparison with other frameworks
PPTX
From Java EE to Jakarta EE
PPTX
High Performance Cloud Native APIs Using Apache Geode
PDF
What's coming in Java EE 8
PDF
Polymer is production ready, how about you?
PDF
EclipseLink: Beyond Relational and NoSQL to Polyglot and HTML5
PDF
Jakarta EE Meets NoSQL in the Cloud Age [DEV6109]
PPTX
NoSQL Endgame Percona Live Online 2020
JSONB introduction and comparison with other frameworks
From Java EE to Jakarta EE
High Performance Cloud Native APIs Using Apache Geode
What's coming in Java EE 8
Polymer is production ready, how about you?
EclipseLink: Beyond Relational and NoSQL to Polyglot and HTML5
Jakarta EE Meets NoSQL in the Cloud Age [DEV6109]
NoSQL Endgame Percona Live Online 2020

Similar to EclipseLink: From NoSQL to HTML5 by Shaun Smith (20)

PPTX
NoSQL Endgame JCON Conference 2020
PPTX
NoSQL Endgame DevoxxUA Conference 2020
PPTX
EclipseCon 2021 NoSQL Endgame
PPTX
NoSQL Endgame - Java2Days 2020 Virtual
PPTX
NoSQL Endgame LWJUG 2021
PDF
Pg no sql_beatemjoinem_v10
PPTX
«NoSQL Databases and Polyglot Persistence»
PDF
Polyglot Persistence with OSGi - Alexander Grzesik
PPTX
PDF
Is multi-model the future of NoSQL?
PPTX
No SQL - Intro
PDF
Polyglot persistence
PPTX
Non relational databases-no sql
PPTX
WEB_DATABASE_chapter_4.pptx
PDF
Development without Constraint
PDF
Comparative study of relational and non relations database performances using...
PPTX
NoSQL powerpoint presentation difference with rdbms
PPTX
A Step by Step Introduction to the MySQL Document Store
PPT
ORM Concepts and JPA 2.0 Specifications
PDF
Eclipse JNoSQL: One API to Many NoSQL Databases - BYOL [HOL5998]
NoSQL Endgame JCON Conference 2020
NoSQL Endgame DevoxxUA Conference 2020
EclipseCon 2021 NoSQL Endgame
NoSQL Endgame - Java2Days 2020 Virtual
NoSQL Endgame LWJUG 2021
Pg no sql_beatemjoinem_v10
«NoSQL Databases and Polyglot Persistence»
Polyglot Persistence with OSGi - Alexander Grzesik
Is multi-model the future of NoSQL?
No SQL - Intro
Polyglot persistence
Non relational databases-no sql
WEB_DATABASE_chapter_4.pptx
Development without Constraint
Comparative study of relational and non relations database performances using...
NoSQL powerpoint presentation difference with rdbms
A Step by Step Introduction to the MySQL Document Store
ORM Concepts and JPA 2.0 Specifications
Eclipse JNoSQL: One API to Many NoSQL Databases - BYOL [HOL5998]
Ad

More from Codemotion (20)

PDF
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
PDF
Pompili - From hero to_zero: The FatalNoise neverending story
PPTX
Pastore - Commodore 65 - La storia
PPTX
Pennisi - Essere Richard Altwasser
PPTX
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
PPTX
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
PPTX
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
PPTX
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
PDF
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
PDF
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
PDF
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
PDF
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
PDF
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
PDF
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
PPTX
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
PPTX
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
PDF
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
PDF
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
PDF
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
PDF
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Pompili - From hero to_zero: The FatalNoise neverending story
Pastore - Commodore 65 - La storia
Pennisi - Essere Richard Altwasser
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Ad

Recently uploaded (20)

PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Approach and Philosophy of On baking technology
PPTX
A Presentation on Touch Screen Technology
PPTX
1. Introduction to Computer Programming.pptx
PPTX
TLE Review Electricity (Electricity).pptx
PPTX
Tartificialntelligence_presentation.pptx
PDF
Encapsulation theory and applications.pdf
PDF
Getting Started with Data Integration: FME Form 101
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
PDF
project resource management chapter-09.pdf
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PPTX
Chapter 5: Probability Theory and Statistics
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Enhancing emotion recognition model for a student engagement use case through...
1 - Historical Antecedents, Social Consideration.pdf
MIND Revenue Release Quarter 2 2025 Press Release
Approach and Philosophy of On baking technology
A Presentation on Touch Screen Technology
1. Introduction to Computer Programming.pptx
TLE Review Electricity (Electricity).pptx
Tartificialntelligence_presentation.pptx
Encapsulation theory and applications.pdf
Getting Started with Data Integration: FME Form 101
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Zenith AI: Advanced Artificial Intelligence
Unlocking AI with Model Context Protocol (MCP)
Microsoft Solutions Partner Drive Digital Transformation with D365.pdf
project resource management chapter-09.pdf
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Assigned Numbers - 2025 - Bluetooth® Document
Heart disease approach using modified random forest and particle swarm optimi...
Chapter 5: Probability Theory and Statistics
WOOl fibre morphology and structure.pdf for textiles
Enhancing emotion recognition model for a student engagement use case through...

EclipseLink: From NoSQL to HTML5 by Shaun Smith

  • 1. 1 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License1 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License EclipseLink: From NoSQL to HTML5 Shaun Smith shaun.smith@oracle.com @shaunMsmith
  • 2. 2 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License2 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License About Me §  Shaun Smith –  Eclipse committer on EclipseLink and related projects –  Oracle TopLink Product Manager –  OO developer since 1987 §  “Old guy who knows Smalltalk” ;-)
  • 3. 3 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License3 EclipseLink: From NoSQL to 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
  • 4. 4 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License4 EclipseLink: From NoSQL to 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
  • 5. 5 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License5 EclipseLink: From NoSQL to 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 databases 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 each database –  Zero portability across databases
  • 6. 6 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License6 EclipseLink: From NoSQL to 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
  • 7. 7 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License7 EclipseLink: From NoSQL to 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.
  • 8. 8 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License8 EclipseLink: From NoSQL to 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.
  • 9. 9 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License9 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Example MongoDB Mapped Entity
  • 10. 10 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License10 EclipseLink: From NoSQL to 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();
  • 11. 11 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License11 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Demo EclipseLink NoSQL
  • 12. 12 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License12 EclipseLink: From NoSQL to 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
  • 13. 13 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License13 EclipseLink: From NoSQL to 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
  • 14. 14 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License14 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Demo Polyglot Persistence
  • 15. 15 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License15 EclipseLink: From NoSQL to 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
  • 16. 16 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License16 EclipseLink: From NoSQL to 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
  • 17. 17 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License17 EclipseLink: From NoSQL to 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>
  • 18. 18 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License18 EclipseLink: From NoSQL to 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 <customer> <phone-numbers> <phone-number> <id>1</id> ... <type>mobile</type> </phone-number> </phone-numbers> </customer> JPAJAXB
  • 19. 19 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License19 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Bidirectional Relationship @Entity public class Customer{ ... @OneToMany(mappedBy="owner") private List<Phone> phones; } @Entity public class Phone{ ... @ManyToOne private Customer owner; }
  • 20. 20 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License20 EclipseLink: From NoSQL to 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! Customer Phone <customer> <phone-numbers> <phone-number> <id>1</id> ... <type>mobile</type> </phone-number> </phone-numbers> </customer> Marshall Customer Phone Unmarshall X owner phones phones
  • 21. 21 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License21 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License EclipseLink XmlInverseReference @Entity public class Customer{ ... @OneToMany(mappedBy=“owner") private List<Phone> phones; } @Entity public class Phone{ ... @ManyToOne @XmlInverseReference(mappedBy=“phones") private Customer owner; }
  • 22. 22 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License22 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License EclipseLink XmlInverseReference §  EclipseLink restores relationships on unmarshall! <customer> <phone-numbers> <phone-number> <id>1</id> ... <type>mobile</type> </phone-number> </phone-numbers> </customer> Marshall Customer Phone owner phones Unmarshall Customer Phone owner project
  • 23. 23 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License23 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Demo JAXB/JPA Fidelity JSON Binding
  • 24. 24 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License24 EclipseLink: From NoSQL to 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
  • 25. 25 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License25 EclipseLink: From NoSQL to 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
  • 26. 26 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License26 EclipseLink: From NoSQL to 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 PUContracting 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
  • 27. 27 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License27 EclipseLink: From NoSQL to 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
  • 28. 28 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License28 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Resource Model JPA Entity Model Resource Model
  • 29. 29 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License29 EclipseLink: From NoSQL to 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" } }, …
  • 30. 30 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License30 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Demo EclipseLink JPA-RS
  • 31. 31 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License31 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License EclipseLink 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++…
  • 32. 32 Beyond Relational and NoSQL to Polyglot and HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License32 EclipseLink: From NoSQL to HTML5 | © 2013 Oracle and AGETO; Licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License Summary §  Java application needs are changing—and EclipseLink is evolving too! §  Support for NoSQL and Polyglot Persistence §  Support for building apps that go from Database to Browser –  JSON Binding –  JAXB/JPA Fidelity –  JPA-RS automating RESTful persistence service