SlideShare a Scribd company logo
1 of 51
Download to read offline
Making Java REST
with JAX-RS 2.0
April 24, 2014	

Dmytro Chyzhykov
Disclaimer
The views and opinions expressed in this
presentation expressed by the speaker are solely his
own and do not necessary represent the views and
opinions of companies he is working or worked for.
3
Agenda
- What is REST?
- REST Principles and JAX-RS 2.0
- Q & A
4
HTTP
Response	

200 OKJSON
Media Type
Client ServerHTTP GET
Resources
Request http://example.com
Read more Hypertext Transfer Protocol -- HTTP/1.1
5
What is REST?
6
REST?
7
REST JEE7 Definition
REpresentational State Transfer is an
architectural style of client-server applications
centered around the transfer of representations
of resources through requests and responses.
Serves to build loosely coupled, lightweight web
services that are particularly well suited for creating
APIs for clients spread out across the Internet.
Was introduced and defined by Roy T. Fielding in
his doctoral dissertation.
Read more The Java EE 7 Tutorial: 29.1 What Are RESTful Web Services?
8
REST is...
- An architectural style, not a technology
- Everything is a Resource
- Suitable for CRUD (Create/Read/Update/Delete)
- Stateless by nature (excellent for distributed
systems)
- Cacheable (naturally supported by HTTP)
- Composable code on demand applications
9
REST Principles
- Give every thing its own ID
- Link things together (HATEOAS)
- Use standard HTTP methods
- Resources can have multiple representations 
- Communicate statelessly
- Support caching
10
Give every thing its own ID
11
Individual Resource ID
http://habrahabr.ru/users/theshade/!
https://twitter.com/fielding!
https://api.github.com/teams/46059!
Collection Resource ID
https://api.github.com/teams/!
https://twitter.com/fielding/followers!
https://api.github.com/user/repos?page=2!
http://ajax.googleapis.com/ajax/services/
search/web?v=1.0&q=Paris%20Hilton
12
JAXRS 2.0 resource example
GET http://locahost:8080/articles/7!
GET http://locahost:8080/articles/!
GET http://locahost:8080/articles/?page=1!
13
JAXRS 2.0 resource example
GET http://locahost:8080/articles/7!
GET http://locahost:8080/articles/!
GET http://locahost:8080/articles/?page=1!
@Path("articles")
public class ArticleResource {
}
14
JAXRS 2.0 resource example
GET http://locahost:8080/articles/7!
GET http://locahost:8080/articles/!
GET http://locahost:8080/articles/?page=1!
@Path("articles")
public class ArticleResource {
@GET
@Path("{id}")
public Article read(@PathParam("id") int id) {…}
}
15
JAXRS 2.0 resource example
GET http://locahost:8080/articles/7!
GET http://locahost:8080/articles/!
GET http://locahost:8080/articles/?page=1!
@Path("articles")
public class ArticleResource {
@GET
@Path("{id}")
public Article read(@PathParam("id") int id) {…}
@GET
public List<Article> list(@QueryParam("page")
@DefaultValue("1")
int page) {…}
}
16
Article POJO
public class Article {
private Integer id;
private String title;
private String content;
!
// Getters and setters go here
}
17
Let's try
$ curl -X GET http://localhost:8080/articles/7!
{!
"id": 7,!
"title": "REST Individual Resource",!
"content": "REST Individual Resource example"!
}
$ curl -X GET http://localhost:8080/articles/!
[!
{!
"id": 7,!
"title": "REST Individual Resource",!
"content": "REST Individual Resource example"!
}!
]
18
Link things together
19
HATEOAS
HATEOAS is abbreviation for Hypermedia as the
Engine of Application State.

A hypermedia-driven site provides information to
navigate the site's REST interfaces dynamically by
including hypermedia links with the responses.
Read more Why hypermedia APIs? and Understanding HATEOAS
20
Atom Links Style
<article id="123">
<title>Hypermedia and JAX-RS 2.0</title>
<content>JAX-RS 2.0 supports Hypermedia …</content>
!
<link rel="self" href=“/articles/123/" />
<link rel="update" href=“/articles/123/" />
<link rel="delete" href=“/articles/123/" />
<link rel="list" href=“/articles/“ />
!
</article>
Read more Atom Format Link Relation Extensions
21
Link Headers Style
HTTP/1.1 200 OK
Content-Type: application/xml
Link: </articles/123/>; rel=self;
Link: </articles/123/>; rel=update;
Link: </articles/123/>; rel=delete;
Link: </articles/>; rel=list;
!
<article id="123">
<title>Hypermedia and JAX-RS 2.0</title>
<content>JAX-RS 2.0 supports Hypermedia …</content>
</article>
Read more Web Linking:The Link Header Field
22
How to Imaging HATEOAS
23
How to Imaging HATEOAS
24
JAX-RS 2.0 HATEOAS
@POST
@Consumes({"application/json", "application/xml"})
@Produces({"application/json", "application/xml"})
public Response create(Article article) {
Article created = articleDao.create(article);
return Response
.ok(created)
.link("link-URI", “link-rel")
.links(produceLinks(created))
.build();
}
!
private Link[] produceLinks(Article article) {...}
Read more javax.ws.rs.core.Link
25
Jersey 2.x HATEOAS
public class Article {
@InjectLinks({
@InjectLink(resource = ArticleResource.class,
rel = "self", method = "read"),
@InjectLink(resource = ArticleResorce.class,
rel = "edit", method = "update"),
@InjectLink(resource = ArticleResource.class,
rel = "delete", method = "delete"),
@InjectLink(resource = ArticleResource.class,
rel = "list", method = “list")
})
private List<Link> links;
!
Read more Jersey 2.x Chapter 12. Declarative Hyperlinking
26
Let's try
$ curl -X GET “http://localhost:8080/articles/123"
{
"id": 123,
"title": "Hypermedia and JAX-RS 2.0",
"content": "JAX-RS 2.0 supports Hypermedia …",
"links": [
{ "uri": "/articles/",
"rel": "self" },
{ "uri": "/articles/",
"rel": "edit" },
{ "uri": "/articles/",
"rel": "delete" },
{ "uri": "/articles",
"rel": “list"}]
}
27
Use standard HTTP methods
Method Purpose
GET Read representation of the specified resource
POST Create or Update without a know ID
PUT Update or Create with a know ID
DELETE Remove
HEAD GET with no response, just metadata
OPTIONS Supported methods for the specified URL.
28
HTTP methods and JAX-RS 2.0
Method Annotation
POST @POST
GET @GET
PUT @PUT
DELETE @DELETE
HEAD @HEAD
OPTIONS @OPTIONS
29
Multiple Representations
30
Content Negotiation
GET http://example.com/stuff
Accept: application/xml, application/json, text/*
Give me resource contents as (in priority):
1. XML
2. or JSON
3. or any text content type you can
4. or return 406 Not Acceptable Error 

otherwise
31
Content Negotiation Example
curl -X POST "http://localhost:8080/articles" 
-H "Content-Type: application/xml" 
-d "<article> 
<title>Conneg and JAX-RS 2.0</title> 
<content> 
JAX-RS 2.0 supports Conneg… 
</content> 
</article>" 
-H "Accept: application/json"
{
"id": 7,
"title": "Conneg and JAX-RS 2.0",
"content": "JAX-RS 2.0 supports Conneg …"
}
32
Content Negotiation Example
curl -X POST "http://localhost:8080/articles" 
-H "Content-Type: application/xml" 
-d "<article> 
<title>Conneg and JAX-RS 2.0</title> 
<content> 
JAX-RS 2.0 supports Conneg… 
</content> 
</article>" 
-H "Accept: application/json"
{
"id": 7,
"title": "Conneg and JAX-RS 2.0",
"content": "JAX-RS 2.0 supports Conneg …"
}
33
Content Negotiation Example
@POST
@Consumes({"application/json", "application/xml"})
@Produces({"application/json", "application/xml"})
public Article create(Article article) {
return articleDao.create(article);
}
34
Language Negotiation
GET http://example.com/stuff
Accept-Language: en-us, en, ru
Encoding Negotiation
GET http://example.com/stuff
Accept-Encoding: gzip, deflate
35
Communicate Statelessly
36
State is Bad
Client
Load
Balancer
Server 1
Sessions
Server 3
Sessions
Server 2
Sessions
37
State is Bad
Client
Load
Balancer
Server 1
Sessions
Server 3
Sessions
Server 2
Sessions
Replication
Replication
38
State is Bad
Client
Load
Balancer
Server 1
Sessions
Server 3
Sessions
Server 2
Sessions
Replication
Replication
ItD
oesN
otScale 39
Communicate statelessly
Client
Load
Balancer
Server 1
Server 3
Server 2 Token	

Storage
40
Caching Support
“The best requests are those
that not even reach me”
- Anonymous overloaded Server
41
Caching Benefits
- Reduce bandwidth
- Reduce latency
- Reduce load on servers
- Hide network failures
42
Caching
Client	

Client

Cache	

Proxy

Cache	

Server
Reverse

Proxy

Cache	

Client	

Client

Cache	

Client	

Client

Cache	

43
HTTP Caching
GET http://example.com/stuff
!
< HTTP/1.1 200 OK
< Cache-Control: max-age=60
Cache-Control: max-age=<delta-seconds>

| s-max-age=<delta-seconds>

| no-cache

| no-store

| …
Read more Caching in HTTP
44
JAX-RS 2.0 Cache Control
Directive Usage
max-age cache.setMaxAge(int maxAge)
s-max-age cache.setSMaxAge(int maxAge)
no-cache cache.setNoCache(boolean noCache)
no-store cache.setNoStore(boolean noStore)
… …
CacheControl cache = new CacheControl();
Read more javax.ws.rs.core.CacheControl
45
Caching and JAX-RS 2.0
@GET
@Path("{id}")
public Response read(@PathParam("id") int id) {
Article article = articleDao.findById(id);
CacheControl cacheControl = new CacheControl();
cacheControl.setMaxAge(60);
!
return Response.ok(article)
.cacheControl(cacheControl)
.build();
}
46
Let's try
curl -X GET "http://localhost:8081/rest/articles/8"
-H "Accept: application/json" -v
< HTTP/1.1 200 OK
< Cache-Control: max-age=60
< Content-Type: application/json
<
{
"id": 8,
"title": "HTTP Caching and JAX-RS 2.0",
"content": "JAX-RS 2.0 supports HTTP Caching"
}
47
Wrapping Up
JAX-RS 2.0 is a POJO-based HTTP-centric
annotation-driven specification for for RESTful Web
Services.

Makes the developer focus on URLs, HTTP
methods and Media Types.
Implementations:
- Apache CXF
- Jersey
- RESTeasy
- Restlet
- others
48
Q & A
49
Thank you!
50
Старший Разработчик
Киноплатформы
Дмитрий Чижиков
dmytro.chyzhykov@yandex.ru
ffbit

More Related Content

What's hot

Using Java to implement RESTful Web Services: JAX-RS
Using Java to implement RESTful Web Services: JAX-RSUsing Java to implement RESTful Web Services: JAX-RS
Using Java to implement RESTful Web Services: JAX-RS
Katrien Verbert
 
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
Cwinters Intro To Rest And JerREST and Jersey IntroductionseyCwinters Intro To Rest And JerREST and Jersey Introductionsey
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
elliando dias
 
RESTful SOA - 中科院暑期讲座
RESTful SOA - 中科院暑期讲座RESTful SOA - 中科院暑期讲座
RESTful SOA - 中科院暑期讲座
Li Yi
 
RESTful services with JAXB and JPA
RESTful services with JAXB and JPARESTful services with JAXB and JPA
RESTful services with JAXB and JPA
Shaun Smith
 
Consuming RESTful services in PHP
Consuming RESTful services in PHPConsuming RESTful services in PHP
Consuming RESTful services in PHP
Zoran Jeremic
 
REST - Representational state transfer
REST - Representational state transferREST - Representational state transfer
REST - Representational state transfer
Tricode (part of Dept)
 

What's hot (20)

Using Java to implement RESTful Web Services: JAX-RS
Using Java to implement RESTful Web Services: JAX-RSUsing Java to implement RESTful Web Services: JAX-RS
Using Java to implement RESTful Web Services: JAX-RS
 
Introduction to JAX-RS
Introduction to JAX-RSIntroduction to JAX-RS
Introduction to JAX-RS
 
Overview of RESTful web services
Overview of RESTful web servicesOverview of RESTful web services
Overview of RESTful web services
 
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
Cwinters Intro To Rest And JerREST and Jersey IntroductionseyCwinters Intro To Rest And JerREST and Jersey Introductionsey
Cwinters Intro To Rest And JerREST and Jersey Introductionsey
 
RESTful SOA - 中科院暑期讲座
RESTful SOA - 中科院暑期讲座RESTful SOA - 中科院暑期讲座
RESTful SOA - 中科院暑期讲座
 
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLEREST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
 
RESTful services with JAXB and JPA
RESTful services with JAXB and JPARESTful services with JAXB and JPA
RESTful services with JAXB and JPA
 
Introduction to RESTful Webservices in JAVA
Introduction to RESTful Webservices  in JAVA Introduction to RESTful Webservices  in JAVA
Introduction to RESTful Webservices in JAVA
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
Json to hive_schema_generator
Json to hive_schema_generatorJson to hive_schema_generator
Json to hive_schema_generator
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
Easy rest service using PHP reflection api
Easy rest service using PHP reflection apiEasy rest service using PHP reflection api
Easy rest service using PHP reflection api
 
Introduction to RESTful Web Services
Introduction to RESTful Web ServicesIntroduction to RESTful Web Services
Introduction to RESTful Web Services
 
Consuming RESTful services in PHP
Consuming RESTful services in PHPConsuming RESTful services in PHP
Consuming RESTful services in PHP
 
REST - Representational state transfer
REST - Representational state transferREST - Representational state transfer
REST - Representational state transfer
 
Representational State Transfer (REST) and HATEOAS
Representational State Transfer (REST) and HATEOASRepresentational State Transfer (REST) and HATEOAS
Representational State Transfer (REST) and HATEOAS
 
OAuth: Trust Issues
OAuth: Trust IssuesOAuth: Trust Issues
OAuth: Trust Issues
 
RESTEasy
RESTEasyRESTEasy
RESTEasy
 
Eclipse Day India 2015 - Rest with Java (jax rs) and jersey
Eclipse Day India 2015 - Rest with Java (jax rs) and jerseyEclipse Day India 2015 - Rest with Java (jax rs) and jersey
Eclipse Day India 2015 - Rest with Java (jax rs) and jersey
 
Rest and Rails
Rest and RailsRest and Rails
Rest and Rails
 

Viewers also liked

Spring JDBCTemplate
Spring JDBCTemplateSpring JDBCTemplate
Spring JDBCTemplate
Guo Albert
 
Introduction to JMS and Message-Driven POJOs
Introduction to JMS and Message-Driven POJOsIntroduction to JMS and Message-Driven POJOs
Introduction to JMS and Message-Driven POJOs
Matt Stine
 
Spring + JPA + DAO Step by Step
Spring + JPA + DAO Step by StepSpring + JPA + DAO Step by Step
Spring + JPA + DAO Step by Step
Guo Albert
 

Viewers also liked (20)

JAX-RS 2.0: RESTful Web Services
JAX-RS 2.0: RESTful Web ServicesJAX-RS 2.0: RESTful Web Services
JAX-RS 2.0: RESTful Web Services
 
Java web services using JAX-WS
Java web services using JAX-WSJava web services using JAX-WS
Java web services using JAX-WS
 
Web Services Tutorial
Web Services TutorialWeb Services Tutorial
Web Services Tutorial
 
Web servers
Web serversWeb servers
Web servers
 
What is tackled in the Java EE Security API (Java EE 8)
What is tackled in the Java EE Security API (Java EE 8)What is tackled in the Java EE Security API (Java EE 8)
What is tackled in the Java EE Security API (Java EE 8)
 
Hypermedia APIs and HATEOAS
Hypermedia APIs and HATEOASHypermedia APIs and HATEOAS
Hypermedia APIs and HATEOAS
 
What's new in the Java API for JSON Binding
What's new in the Java API for JSON BindingWhat's new in the Java API for JSON Binding
What's new in the Java API for JSON Binding
 
Spring JDBCTemplate
Spring JDBCTemplateSpring JDBCTemplate
Spring JDBCTemplate
 
Criando um Web Service Restful com Jersey, Eclipse, JBoss, Tomcat, WebSphere
Criando um Web Service Restful com Jersey, Eclipse, JBoss, Tomcat, WebSphereCriando um Web Service Restful com Jersey, Eclipse, JBoss, Tomcat, WebSphere
Criando um Web Service Restful com Jersey, Eclipse, JBoss, Tomcat, WebSphere
 
2015 UJUG, Servlet 4.0 portion
2015 UJUG, Servlet 4.0 portion2015 UJUG, Servlet 4.0 portion
2015 UJUG, Servlet 4.0 portion
 
Introduction to JMS and Message-Driven POJOs
Introduction to JMS and Message-Driven POJOsIntroduction to JMS and Message-Driven POJOs
Introduction to JMS and Message-Driven POJOs
 
A first Draft to Java Configuration
A first Draft to Java ConfigurationA first Draft to Java Configuration
A first Draft to Java Configuration
 
Web protocols for java developers
Web protocols for java developersWeb protocols for java developers
Web protocols for java developers
 
Tutorial su JMS (Java Message Service)
Tutorial su JMS (Java Message Service)Tutorial su JMS (Java Message Service)
Tutorial su JMS (Java Message Service)
 
Overview of web services
Overview of web servicesOverview of web services
Overview of web services
 
JPA 2.1 performance tuning tips
JPA 2.1 performance tuning tipsJPA 2.1 performance tuning tips
JPA 2.1 performance tuning tips
 
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute InfodeckServlet 4.0 Adopt-a-JSR 10 Minute Infodeck
Servlet 4.0 Adopt-a-JSR 10 Minute Infodeck
 
Secure REST with JAX-RS
Secure REST with JAX-RSSecure REST with JAX-RS
Secure REST with JAX-RS
 
Spring + JPA + DAO Step by Step
Spring + JPA + DAO Step by StepSpring + JPA + DAO Step by Step
Spring + JPA + DAO Step by Step
 
REST API design and construction with Java EE - pages from my work diary
REST API design and construction with Java EE - pages from my work diaryREST API design and construction with Java EE - pages from my work diary
REST API design and construction with Java EE - pages from my work diary
 

Similar to Making Java REST with JAX-RS 2.0

Developing RESTful WebServices using Jersey
Developing RESTful WebServices using JerseyDeveloping RESTful WebServices using Jersey
Developing RESTful WebServices using Jersey
b_kathir
 
Building Restful Web Services with Java
Building Restful Web Services with JavaBuilding Restful Web Services with Java
Building Restful Web Services with Java
Vassil Popovski
 
JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011
Shreedhar Ganapathy
 

Similar to Making Java REST with JAX-RS 2.0 (20)

RESTful Web services using JAX-RS
RESTful Web services using JAX-RSRESTful Web services using JAX-RS
RESTful Web services using JAX-RS
 
Spark IT 2011 - Developing RESTful Web services with JAX-RS
Spark IT 2011 - Developing RESTful Web services with JAX-RSSpark IT 2011 - Developing RESTful Web services with JAX-RS
Spark IT 2011 - Developing RESTful Web services with JAX-RS
 
JAX-RS 2.0 and OData
JAX-RS 2.0 and ODataJAX-RS 2.0 and OData
JAX-RS 2.0 and OData
 
Rest with java (jax rs) and jersey and swagger
Rest with java (jax rs) and jersey and swaggerRest with java (jax rs) and jersey and swagger
Rest with java (jax rs) and jersey and swagger
 
The JSON REST API for WordPress
The JSON REST API for WordPressThe JSON REST API for WordPress
The JSON REST API for WordPress
 
REST teori og praksis; REST in theory and practice
REST teori og praksis; REST in theory and practiceREST teori og praksis; REST in theory and practice
REST teori og praksis; REST in theory and practice
 
Developing RESTful WebServices using Jersey
Developing RESTful WebServices using JerseyDeveloping RESTful WebServices using Jersey
Developing RESTful WebServices using Jersey
 
Using and scaling Rack and Rack-based middleware
Using and scaling Rack and Rack-based middlewareUsing and scaling Rack and Rack-based middleware
Using and scaling Rack and Rack-based middleware
 
May 2010 - RestEasy
May 2010 - RestEasyMay 2010 - RestEasy
May 2010 - RestEasy
 
Felix HTTP - Paving the road to the future
Felix HTTP - Paving the road to the futureFelix HTTP - Paving the road to the future
Felix HTTP - Paving the road to the future
 
JAX-RS 2.0: New and Noteworthy in RESTful Web services API at JAX London
JAX-RS 2.0: New and Noteworthy in RESTful Web services API at JAX LondonJAX-RS 2.0: New and Noteworthy in RESTful Web services API at JAX London
JAX-RS 2.0: New and Noteworthy in RESTful Web services API at JAX London
 
Building Restful Web Services with Java
Building Restful Web Services with JavaBuilding Restful Web Services with Java
Building Restful Web Services with Java
 
Android and REST
Android and RESTAndroid and REST
Android and REST
 
JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011JAX-RS JavaOne Hyderabad, India 2011
JAX-RS JavaOne Hyderabad, India 2011
 
Request dispacther interface ppt
Request dispacther interface pptRequest dispacther interface ppt
Request dispacther interface ppt
 
JAX RS 2.0 - OTN Bangalore 2013
JAX RS 2.0 - OTN Bangalore 2013JAX RS 2.0 - OTN Bangalore 2013
JAX RS 2.0 - OTN Bangalore 2013
 
Java serverpages
Java serverpagesJava serverpages
Java serverpages
 
Data in RDF
Data in RDFData in RDF
Data in RDF
 
Couchdb: No SQL? No driver? No problem
Couchdb: No SQL? No driver? No problemCouchdb: No SQL? No driver? No problem
Couchdb: No SQL? No driver? No problem
 
Building Beautiful REST APIs in ASP.NET Core
Building Beautiful REST APIs in ASP.NET CoreBuilding Beautiful REST APIs in ASP.NET Core
Building Beautiful REST APIs in ASP.NET Core
 

Recently uploaded

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 

Recently uploaded (20)

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
ManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide DeckManageIQ - Sprint 236 Review - Slide Deck
ManageIQ - Sprint 236 Review - Slide Deck
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 

Making Java REST with JAX-RS 2.0

  • 1.
  • 2. Making Java REST with JAX-RS 2.0 April 24, 2014 Dmytro Chyzhykov
  • 3. Disclaimer The views and opinions expressed in this presentation expressed by the speaker are solely his own and do not necessary represent the views and opinions of companies he is working or worked for. 3
  • 4. Agenda - What is REST? - REST Principles and JAX-RS 2.0 - Q & A 4
  • 5. HTTP Response 200 OKJSON Media Type Client ServerHTTP GET Resources Request http://example.com Read more Hypertext Transfer Protocol -- HTTP/1.1 5
  • 8. REST JEE7 Definition REpresentational State Transfer is an architectural style of client-server applications centered around the transfer of representations of resources through requests and responses. Serves to build loosely coupled, lightweight web services that are particularly well suited for creating APIs for clients spread out across the Internet. Was introduced and defined by Roy T. Fielding in his doctoral dissertation. Read more The Java EE 7 Tutorial: 29.1 What Are RESTful Web Services? 8
  • 9. REST is... - An architectural style, not a technology - Everything is a Resource - Suitable for CRUD (Create/Read/Update/Delete) - Stateless by nature (excellent for distributed systems) - Cacheable (naturally supported by HTTP) - Composable code on demand applications 9
  • 10. REST Principles - Give every thing its own ID - Link things together (HATEOAS) - Use standard HTTP methods - Resources can have multiple representations - Communicate statelessly - Support caching 10
  • 11. Give every thing its own ID 11
  • 12. Individual Resource ID http://habrahabr.ru/users/theshade/! https://twitter.com/fielding! https://api.github.com/teams/46059! Collection Resource ID https://api.github.com/teams/! https://twitter.com/fielding/followers! https://api.github.com/user/repos?page=2! http://ajax.googleapis.com/ajax/services/ search/web?v=1.0&q=Paris%20Hilton 12
  • 13. JAXRS 2.0 resource example GET http://locahost:8080/articles/7! GET http://locahost:8080/articles/! GET http://locahost:8080/articles/?page=1! 13
  • 14. JAXRS 2.0 resource example GET http://locahost:8080/articles/7! GET http://locahost:8080/articles/! GET http://locahost:8080/articles/?page=1! @Path("articles") public class ArticleResource { } 14
  • 15. JAXRS 2.0 resource example GET http://locahost:8080/articles/7! GET http://locahost:8080/articles/! GET http://locahost:8080/articles/?page=1! @Path("articles") public class ArticleResource { @GET @Path("{id}") public Article read(@PathParam("id") int id) {…} } 15
  • 16. JAXRS 2.0 resource example GET http://locahost:8080/articles/7! GET http://locahost:8080/articles/! GET http://locahost:8080/articles/?page=1! @Path("articles") public class ArticleResource { @GET @Path("{id}") public Article read(@PathParam("id") int id) {…} @GET public List<Article> list(@QueryParam("page") @DefaultValue("1") int page) {…} } 16
  • 17. Article POJO public class Article { private Integer id; private String title; private String content; ! // Getters and setters go here } 17
  • 18. Let's try $ curl -X GET http://localhost:8080/articles/7! {! "id": 7,! "title": "REST Individual Resource",! "content": "REST Individual Resource example"! } $ curl -X GET http://localhost:8080/articles/! [! {! "id": 7,! "title": "REST Individual Resource",! "content": "REST Individual Resource example"! }! ] 18
  • 20. HATEOAS HATEOAS is abbreviation for Hypermedia as the Engine of Application State.
 A hypermedia-driven site provides information to navigate the site's REST interfaces dynamically by including hypermedia links with the responses. Read more Why hypermedia APIs? and Understanding HATEOAS 20
  • 21. Atom Links Style <article id="123"> <title>Hypermedia and JAX-RS 2.0</title> <content>JAX-RS 2.0 supports Hypermedia …</content> ! <link rel="self" href=“/articles/123/" /> <link rel="update" href=“/articles/123/" /> <link rel="delete" href=“/articles/123/" /> <link rel="list" href=“/articles/“ /> ! </article> Read more Atom Format Link Relation Extensions 21
  • 22. Link Headers Style HTTP/1.1 200 OK Content-Type: application/xml Link: </articles/123/>; rel=self; Link: </articles/123/>; rel=update; Link: </articles/123/>; rel=delete; Link: </articles/>; rel=list; ! <article id="123"> <title>Hypermedia and JAX-RS 2.0</title> <content>JAX-RS 2.0 supports Hypermedia …</content> </article> Read more Web Linking:The Link Header Field 22
  • 23. How to Imaging HATEOAS 23
  • 24. How to Imaging HATEOAS 24
  • 25. JAX-RS 2.0 HATEOAS @POST @Consumes({"application/json", "application/xml"}) @Produces({"application/json", "application/xml"}) public Response create(Article article) { Article created = articleDao.create(article); return Response .ok(created) .link("link-URI", “link-rel") .links(produceLinks(created)) .build(); } ! private Link[] produceLinks(Article article) {...} Read more javax.ws.rs.core.Link 25
  • 26. Jersey 2.x HATEOAS public class Article { @InjectLinks({ @InjectLink(resource = ArticleResource.class, rel = "self", method = "read"), @InjectLink(resource = ArticleResorce.class, rel = "edit", method = "update"), @InjectLink(resource = ArticleResource.class, rel = "delete", method = "delete"), @InjectLink(resource = ArticleResource.class, rel = "list", method = “list") }) private List<Link> links; ! Read more Jersey 2.x Chapter 12. Declarative Hyperlinking 26
  • 27. Let's try $ curl -X GET “http://localhost:8080/articles/123" { "id": 123, "title": "Hypermedia and JAX-RS 2.0", "content": "JAX-RS 2.0 supports Hypermedia …", "links": [ { "uri": "/articles/", "rel": "self" }, { "uri": "/articles/", "rel": "edit" }, { "uri": "/articles/", "rel": "delete" }, { "uri": "/articles", "rel": “list"}] } 27
  • 28. Use standard HTTP methods Method Purpose GET Read representation of the specified resource POST Create or Update without a know ID PUT Update or Create with a know ID DELETE Remove HEAD GET with no response, just metadata OPTIONS Supported methods for the specified URL. 28
  • 29. HTTP methods and JAX-RS 2.0 Method Annotation POST @POST GET @GET PUT @PUT DELETE @DELETE HEAD @HEAD OPTIONS @OPTIONS 29
  • 31. Content Negotiation GET http://example.com/stuff Accept: application/xml, application/json, text/* Give me resource contents as (in priority): 1. XML 2. or JSON 3. or any text content type you can 4. or return 406 Not Acceptable Error 
 otherwise 31
  • 32. Content Negotiation Example curl -X POST "http://localhost:8080/articles" -H "Content-Type: application/xml" -d "<article> <title>Conneg and JAX-RS 2.0</title> <content> JAX-RS 2.0 supports Conneg… </content> </article>" -H "Accept: application/json" { "id": 7, "title": "Conneg and JAX-RS 2.0", "content": "JAX-RS 2.0 supports Conneg …" } 32
  • 33. Content Negotiation Example curl -X POST "http://localhost:8080/articles" -H "Content-Type: application/xml" -d "<article> <title>Conneg and JAX-RS 2.0</title> <content> JAX-RS 2.0 supports Conneg… </content> </article>" -H "Accept: application/json" { "id": 7, "title": "Conneg and JAX-RS 2.0", "content": "JAX-RS 2.0 supports Conneg …" } 33
  • 34. Content Negotiation Example @POST @Consumes({"application/json", "application/xml"}) @Produces({"application/json", "application/xml"}) public Article create(Article article) { return articleDao.create(article); } 34
  • 35. Language Negotiation GET http://example.com/stuff Accept-Language: en-us, en, ru Encoding Negotiation GET http://example.com/stuff Accept-Encoding: gzip, deflate 35
  • 37. State is Bad Client Load Balancer Server 1 Sessions Server 3 Sessions Server 2 Sessions 37
  • 38. State is Bad Client Load Balancer Server 1 Sessions Server 3 Sessions Server 2 Sessions Replication Replication 38
  • 39. State is Bad Client Load Balancer Server 1 Sessions Server 3 Sessions Server 2 Sessions Replication Replication ItD oesN otScale 39
  • 41. Caching Support “The best requests are those that not even reach me” - Anonymous overloaded Server 41
  • 42. Caching Benefits - Reduce bandwidth - Reduce latency - Reduce load on servers - Hide network failures 42
  • 44. HTTP Caching GET http://example.com/stuff ! < HTTP/1.1 200 OK < Cache-Control: max-age=60 Cache-Control: max-age=<delta-seconds>
 | s-max-age=<delta-seconds>
 | no-cache
 | no-store
 | … Read more Caching in HTTP 44
  • 45. JAX-RS 2.0 Cache Control Directive Usage max-age cache.setMaxAge(int maxAge) s-max-age cache.setSMaxAge(int maxAge) no-cache cache.setNoCache(boolean noCache) no-store cache.setNoStore(boolean noStore) … … CacheControl cache = new CacheControl(); Read more javax.ws.rs.core.CacheControl 45
  • 46. Caching and JAX-RS 2.0 @GET @Path("{id}") public Response read(@PathParam("id") int id) { Article article = articleDao.findById(id); CacheControl cacheControl = new CacheControl(); cacheControl.setMaxAge(60); ! return Response.ok(article) .cacheControl(cacheControl) .build(); } 46
  • 47. Let's try curl -X GET "http://localhost:8081/rest/articles/8" -H "Accept: application/json" -v < HTTP/1.1 200 OK < Cache-Control: max-age=60 < Content-Type: application/json < { "id": 8, "title": "HTTP Caching and JAX-RS 2.0", "content": "JAX-RS 2.0 supports HTTP Caching" } 47
  • 48. Wrapping Up JAX-RS 2.0 is a POJO-based HTTP-centric annotation-driven specification for for RESTful Web Services.
 Makes the developer focus on URLs, HTTP methods and Media Types. Implementations: - Apache CXF - Jersey - RESTeasy - Restlet - others 48