SlideShare a Scribd company logo
By NeeravArora (Cerner Healthcare Solutions Pvt Ltd.)
&
Kumaraswamy M (IBM)
REST with Java (JAX-RS) and Jersey
Agenda
 Rest API concepts .
 Foundation .
 JAX-RS and Jersey .
 Setting up Jersey project in eclipse.
 JAX-RS annotations .
 CRUD app.
 Restful API’s with Swagger.
Rest API Concepts
 Services exposed to internet for programmatic access
 Users can be either producers or consumers or both
 Eg : api.twitter.com
 Data can be returned in the form of XML /JSON / etc
 Helps developers to parse data.
 Messages can be exchanged in any kind of HTTP method
Foundation
Nouns (Resources)
unconstrained
i.e., http://example.com/employees/12345
Representations
constrained
i.e., XML
Verbs
constrained
i.e., GET
Resources
 REST uses URI to identify resources .
 http://localhost/books/
 http://localhost/books/ISBN-0011
 http://localhost/books/ISBN-0011/authors
 http://localhost/classes
 http://localhost/classes/cs2650
 http://localhost/classes/cs2650/students
 As you traverse the path from more generic to more
specific, you are navigating the data .
Action/Verb
 /orders
 GET - list all orders
 POST - submit a new order
 /orders/{order-id}
 GET - get an order representation
 PUT - update an order
 DELETE - cancel an order
 /orders/average-sale
 GET - calculate average sale
 /customers
 GET - list all customers
 POST - create a new customer
 /customers/{cust-id}
 GET - get a customer representation
 DELETE- remove a customer
 /customers/{cust-id}/orders
 GET - get the orders of a customer
Representations (MediaType)
 XML
<COURSE>
<ID>CS2650</ID>
<NAME>Distributed Multimedia Software</NAME>
</COURSE>
 JSON
{“course”: {
“id”: “CS2650”
“name”: “Distributed Multimedia Software”
}
}
Why it is called “REST” ?
JAX-RS
 Java API for RESTfulWeb Services .
 Provides support in creating web services according to the
Representational StateTransfer (REST) architectural pattern .
 Uses annotations .
Jersey
 One of the libraries that implements JAX-RS , from Oracle.
 Other libraries in the market -
* Apache CXF , an open sourceWeb service framework .
* RESTeasy, JBoss 's implementation .
* Restlet .
* ApacheWink ,Apache Software Foundation Incubator .
*WebSphereApplication Server from IBM.
 Choice of library doesn’t matter .
Big Picture
Big Picture (contd…)
Your first Jersey project
Your first Jersey project (contd…)
http://repo1.maven.org/maven2/archetype-catalog.xml
Your first Jersey project (contd…)
Your first Jersey project (contd…)
Your first Jersey project (contd…)
Your first Jersey project (contd…)
Root resource class
@Path
Sets the path to base URL + /your_path.The base URL is based on your application name,
the servlet and the URL pattern from the web.xml configuration file.
@GET, @PUT, @POST, @DELETE, ...
@Produces
@Produces defines which MIME type is delivered by a method annotated with @GET. In
the example text ("text/plain") is produced. Other examples would be "application/xml"
or "application/json"
@PathParam
Used to inject values from the URL into a method parameter.This way you inject,
for example, the ID of a resource into the method to get the correct object.
@Consumes
@Consumes defines which MIME type is consumed by this method.
CRUD App example (Model)
CRUD App example (Model)
CRUD App example (Database)
CRUD App example (Service)
Crud App (Resource)
RESTFul APIs with Swagger
What is Swagger and Why Swagger?
• Simple representation of your RESTFul API
• Declarative resource specification
• JSON specification
• Swagger UI to interact with the API in a sandbox UI
• Why Jersey Client / JUNIT for your client or boss?
• Developers and documentation… hahaha
• Support your existing RESTFul API without change
Swagger Specification
• Resource Listing
• API Description
Create Swagger Specification
• Codgen - converts annotations in your code into swagger
specification
• Manually - writing the JSON by hand
Swagger Specification
Rest with java (jax rs) and jersey and swagger
References
• http://www.vogella.com/tutorials/REST/article.html
• https://jersey.java.net/documentation/latest/jaxrs-
resources.html
• https://github.com/koushikkothagal/messenger
• http://swagger.io/specification/
• https://github.com/swagger-api/swagger-spec
• https://github.com/swagger-api/swagger-core
• http://petstore.swagger.io/
Rest with java (jax rs) and jersey and swagger
Rest with java (jax rs) and jersey and swagger

More Related Content

PPTX
Laravel Beginners Tutorial 1
PPTX
OTV(Overlay Transport Virtualization)
PPTX
AEM (CQ) Dispatcher Caching Webinar 2013
PDF
MPLS Deployment Chapter 2 - Services
PDF
Fine-tuning your purification process: Using mechanistic modeling of chromato...
PDF
MV2ADB - Move to Oracle Autonomous Database in One-click
PDF
Learn REST in 18 Slides
PPTX
Introdução ao Spring Framework MVC
Laravel Beginners Tutorial 1
OTV(Overlay Transport Virtualization)
AEM (CQ) Dispatcher Caching Webinar 2013
MPLS Deployment Chapter 2 - Services
Fine-tuning your purification process: Using mechanistic modeling of chromato...
MV2ADB - Move to Oracle Autonomous Database in One-click
Learn REST in 18 Slides
Introdução ao Spring Framework MVC

Viewers also liked (17)

PPTX
Soap and restful webservice
PPTX
Rest presentation
PPTX
04_Node modules
PDF
Restful web services by Sreeni Inturi
PDF
Gettings started with the superheroic JavaScript library AngularJS
PDF
Lecture 7 Web Services JAX-WS & JAX-RS
PPTX
Spring Boot Tutorial
PPTX
jDays - Spring Boot under the Hood
PDF
Spring Framework - Spring Security
PDF
Microservices with Spring Boot
PPTX
Benefits of Hypermedia API
PPT
REST beyond CRUD
PPTX
REST & RESTful Web Services
PDF
RESTful API Design, Second Edition
PDF
Introduction to angular js july 6th 2014
PDF
The MEAN stack - SoCalCodeCamp - june 29th 2014
PPTX
Spring boot
Soap and restful webservice
Rest presentation
04_Node modules
Restful web services by Sreeni Inturi
Gettings started with the superheroic JavaScript library AngularJS
Lecture 7 Web Services JAX-WS & JAX-RS
Spring Boot Tutorial
jDays - Spring Boot under the Hood
Spring Framework - Spring Security
Microservices with Spring Boot
Benefits of Hypermedia API
REST beyond CRUD
REST & RESTful Web Services
RESTful API Design, Second Edition
Introduction to angular js july 6th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014
Spring boot
Ad

Similar to Rest with java (jax rs) and jersey and swagger (20)

PPTX
IBM Integration Bus and REST APIs - Sanjay Nagchowdhury
PPTX
Building Restful Web Services with Java
PPTX
Rest overview briefing
PDF
PPT
Developing RESTful WebServices using Jersey
PPTX
RESTful Web Service using Swagger
PPTX
Introducing swagger
PPTX
JAX-RS. Developing RESTful APIs with Java
PPTX
Ppt on web development and this has all details
PPTX
Restful web services with java
PDF
RESTful Java With JAX RS 1st Edition Bill Burke
PDF
RESTful Java With JAX RS 1st Edition Bill Burke
PPTX
RJUG - REST API / JAX-RS Overview
PDF
20140527 - APIcon SF - Workshop #2 - Document and manage Java-based web APIs
PPTX
RESTful application with JAX-RS and how to expose and test them
PDF
Hia 1691-using iib-to_support_api_economy
PPTX
Restful webservice
PPTX
Overview of RESTful web services
PDF
RESTful Web Services with Jersey
PDF
JAX-RS Creating RESTFul services
IBM Integration Bus and REST APIs - Sanjay Nagchowdhury
Building Restful Web Services with Java
Rest overview briefing
Developing RESTful WebServices using Jersey
RESTful Web Service using Swagger
Introducing swagger
JAX-RS. Developing RESTful APIs with Java
Ppt on web development and this has all details
Restful web services with java
RESTful Java With JAX RS 1st Edition Bill Burke
RESTful Java With JAX RS 1st Edition Bill Burke
RJUG - REST API / JAX-RS Overview
20140527 - APIcon SF - Workshop #2 - Document and manage Java-based web APIs
RESTful application with JAX-RS and how to expose and test them
Hia 1691-using iib-to_support_api_economy
Restful webservice
Overview of RESTful web services
RESTful Web Services with Jersey
JAX-RS Creating RESTFul services
Ad

Recently uploaded (20)

PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
Introduction to Artificial Intelligence
PPTX
Transform Your Business with a Software ERP System
PPTX
ISO 45001 Occupational Health and Safety Management System
PPTX
Online Work Permit System for Fast Permit Processing
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
L1 - Introduction to python Backend.pptx
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Digital Strategies for Manufacturing Companies
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPT
Introduction Database Management System for Course Database
PDF
medical staffing services at VALiNTRY
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Design an Analysis of Algorithms I-SECS-1021-03
Odoo Companies in India – Driving Business Transformation.pdf
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
VVF-Customer-Presentation2025-Ver1.9.pptx
How to Choose the Right IT Partner for Your Business in Malaysia
Introduction to Artificial Intelligence
Transform Your Business with a Software ERP System
ISO 45001 Occupational Health and Safety Management System
Online Work Permit System for Fast Permit Processing
ManageIQ - Sprint 268 Review - Slide Deck
Which alternative to Crystal Reports is best for small or large businesses.pdf
L1 - Introduction to python Backend.pptx
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Digital Strategies for Manufacturing Companies
2025 Textile ERP Trends: SAP, Odoo & Oracle
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Introduction Database Management System for Course Database
medical staffing services at VALiNTRY

Rest with java (jax rs) and jersey and swagger