SlideShare a Scribd company logo
RESTful Web Services
With Spring MVC
@DigitalSonic
What? Why? How?
Richardson Maturity Model
• How to identify Resources
• How to use HTTP Verbs
• How to design Representations
• Miscellaneous
• Cache/Version/HATEOAS
Agenda
Resources
• Domain Nouns
• Collections & Composites
• Functions
• Controllers
• Article & Comment
• http://domain/articles
• http://domain/articles/1
• http://domain/articles/1/comments
• Web Page
• a composite of article and comments
• Magazine
• a collection of articles
Samples
Samples
• Functions
• http://domain/direction?from=shanghai&to=hangzhou
• Controllers
• http://domain/users/smith/address_merge
Resource Granularity
• Network Efficiency
• Size of Representations
• Client Convenience
URL Mapping in Spring MVC
• <mvc:annotation-driven/>
• @RequestMapping
• @PathVariable
• @RequestParam
• @MatrixVariable
Building URI
• UriComponents
• UriComponentsBuilder
• ServletUriComponentsBuilder
Better URI
• use domains and subdomains to logically group or partition resources
• use / to indicate a hierarchical relationship
• use , and ; to indicate nonhierarchical elements
• use - and _ to improve the readability
• use & to separate parameters
• avoid including file extensions
HTTP Verbs
Verbs
Safety &
Idempotency
Usage
GET Y / Y Use GET for safe and idempotent information retrieval.
POST N / N
Use this method to let the resource perform a variety of actions on the
server side such as creating new resources, updating existing
resources, or making a mixture of changes to one or more resources.
DELETE N / Y Use this method to let a client delete a resource.
PUT N / Y
Use this method to completely update or replace an existing resource
or to create a new resource with a URI specified by the client.
HEAD Y / Y
Use this method to retrieve the same headers as that of a GET
response but without any body in the response.
OPTIONS Y / Y
Use this method to find the list of HTTP methods supported by any
resource or to ping the server.
TRACE Y / Y
Use this method to let the server echo back the headers that it
received.
HTTP Method in Spring MVC
• @RequestMapping
• RequestMethod Enum
HiddenHttpMethodFilter
<input type="hidden" name="_method" value="put"/>
Your web form doesn’t
support so much verbs?
Representations
• Different view technologies in Spring
• JSP/JSTL (InternalResourceViewResolver)
• Tiles (TilesViewResolver)
• XML Marshalling (MarhsallingView)
• JSON Mapping (MappingJacksonJsonView)
• etc.
• @ResponseBody
HTML
Should I say anything
about this?
You know what I mean.
JSON
• Jackson
• MappingJacksonHttpMessageConverter
• Jackson 2
• MappingJackson2HttpMessageConverter
JSON
• @RequestBody
• @ResponseBody
• @RequestMapping
• consumes="application/json"
• produces="application/json"
JSON
• Demo
• Request
• curl -H "Accept: application/json" http://localhost:8080/rest-
demo/articles/10
XML
• JAXB 2
• Jaxb2RootElementHttpMessageConverter
Links
• Link
• href/rel
• Atom link Ref
• self/alternate/related/edit
• first/last/previous/next
Content Negotiation
• serval @RequestMapping with different produces
• contentNegotiationManager
• file extension
• format parameter
• Accept header
• ContentNegotiatingViewResolver
Content Negotiation
HTTP Status Codes
• Use the RIGHT HTTP Status Code!
• @ResponseStatus
• http://www.ietf.org/rfc/rfc2616.txt
HTTP Status Codes
Code Description Code Description
200 OK 400 Bad Request
201 Created 401 Unauthorized
202 Accepted 403 Forbidden
301 Moved Permanently 404 Not Found
303 See Other 410 Gone
304 Not Modified 500 Internal Server Error
307 Temporary Redirect 503 Service Unavailable
Miscellaneous
Cache
• Use the RIGHT Cache HTTP Headers
• Cache-Control
• Expires
• Date
• Last-Modified
Cache for Static Resources
Cache for Dynamic Resources
Support for Etags
• ShallowEtagHeaderFilter
Support for Etags
Version
• Try to maintain the compatibility
• URI
• Representation
• Link
• If you can’t, then make a new version
• subdomain
• path segments
• query parameters
HATEOAS
• Hypermedia as the Engine of Application State
• Spring Hateoas
• https://github.com/SpringSource/spring-hateoas
• Better support for Links and Resources
Demo
References
• RESTful Web Services Cookbook, O’Reilly
• REST in Practice, O’Reilly
• the official reference of the Spring Framework
• and so many articles on the Internet
Let’s Code!!!

More Related Content

PPTX
Designing REST services with Spring MVC
PDF
Building RESTful applications using Spring MVC
PPTX
Soap and restful webservice
PPTX
REST API Design
PPTX
Implementation advantages of rest
PPTX
REST and ASP.NET Web API (Tunisia)
PDF
AJAX - An introduction
PDF
Dynamic content generation
Designing REST services with Spring MVC
Building RESTful applications using Spring MVC
Soap and restful webservice
REST API Design
Implementation advantages of rest
REST and ASP.NET Web API (Tunisia)
AJAX - An introduction
Dynamic content generation

What's hot (19)

PPT
Introduction to the Web API
PPTX
REST & RESTful Web Services
PPTX
Introduction to RESTful Webservices in JAVA
PDF
HTML5 - An introduction
PPTX
RESTful Architecture
PPT
Understanding REST
PDF
Doing REST Right
PPT
RESTful services
PDF
SOAP-based Web Services
PDF
Representational State Transfer (REST)
PDF
Angularjs & REST
PPTX
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
PDF
REST API Recommendations
PDF
The never-ending REST API design debate
PDF
Best Practices in Web Service Design
PDF
Learn REST in 18 Slides
PPTX
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
PPTX
Rest and Rails
PDF
How to build a rest api.pptx
Introduction to the Web API
REST & RESTful Web Services
Introduction to RESTful Webservices in JAVA
HTML5 - An introduction
RESTful Architecture
Understanding REST
Doing REST Right
RESTful services
SOAP-based Web Services
Representational State Transfer (REST)
Angularjs & REST
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST API Recommendations
The never-ending REST API design debate
Best Practices in Web Service Design
Learn REST in 18 Slides
The glory of REST in Java: Spring HATEOAS, RAML, Temenos IRIS
Rest and Rails
How to build a rest api.pptx
Ad

Viewers also liked (20)

PDF
REST APIs with Spring
PDF
Microservices with Spring Boot
PDF
Spring Web Services: SOAP vs. REST
PDF
初窥Java网络IO
PDF
实战HotSpot JVM GC
PPTX
Hadoop introduction
PPTX
Overall enterprise application architecture
KEY
A Walking Tour of (almost) all of Springdom
PPTX
Thinking Beyond ORM in JPA
PDF
Lazy vs. Eager Loading Strategies in JPA 2.1
PDF
Hibernate using jpa
DOCX
Colloquium Report
PDF
Getting Started with WebSockets and Server-Sent Events
PPTX
Restful webservice
PDF
Java 8 - New Features
PDF
Secure Authentication and Session Management in Java EE
KEY
Modular Java - OSGi
PDF
That old Spring magic has me in its SpEL
PDF
Spring boot
PPT
Spring Boot. Boot up your development
REST APIs with Spring
Microservices with Spring Boot
Spring Web Services: SOAP vs. REST
初窥Java网络IO
实战HotSpot JVM GC
Hadoop introduction
Overall enterprise application architecture
A Walking Tour of (almost) all of Springdom
Thinking Beyond ORM in JPA
Lazy vs. Eager Loading Strategies in JPA 2.1
Hibernate using jpa
Colloquium Report
Getting Started with WebSockets and Server-Sent Events
Restful webservice
Java 8 - New Features
Secure Authentication and Session Management in Java EE
Modular Java - OSGi
That old Spring magic has me in its SpEL
Spring boot
Spring Boot. Boot up your development
Ad

Similar to RESTful Web Services with Spring MVC (20)

PDF
Java colombo-deep-dive-into-jax-rs
PPTX
StackMate - CloudFormation for CloudStack
PDF
PLAT-8 Spring Web Scripts and Spring Surf
KEY
Backbonification for dummies - Arrrrug 10/1/2012
PPTX
Rest presentation
PPTX
PPTX
Rest with Java EE 6 , Security , Backbone.js
PDF
Java EE 8 Web Frameworks: A Look at JSF vs MVC
PDF
Rest And Rails
PDF
Tutorial, Part 2: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
PPTX
18CSC311J Web Design and Development UNIT-3
PPTX
The ASP.NET Web API for Beginners
PPTX
Session 29 - Servlets - Part 5
PDF
RESTful HATEOAS standards using Java based Katharsis
PDF
RESTful HATEOAS standards using Java based Katharsis
PPTX
Spring mvc
PDF
MVC 1.0 als alternative Webtechnologie
PPTX
Single Page Applications: Your Browser is the OS!
PDF
The Spring Update
PDF
Ajug - The Spring Update
Java colombo-deep-dive-into-jax-rs
StackMate - CloudFormation for CloudStack
PLAT-8 Spring Web Scripts and Spring Surf
Backbonification for dummies - Arrrrug 10/1/2012
Rest presentation
Rest with Java EE 6 , Security , Backbone.js
Java EE 8 Web Frameworks: A Look at JSF vs MVC
Rest And Rails
Tutorial, Part 2: SharePoint 101: Jump-Starting the Developer by Rob Windsor ...
18CSC311J Web Design and Development UNIT-3
The ASP.NET Web API for Beginners
Session 29 - Servlets - Part 5
RESTful HATEOAS standards using Java based Katharsis
RESTful HATEOAS standards using Java based Katharsis
Spring mvc
MVC 1.0 als alternative Webtechnologie
Single Page Applications: Your Browser is the OS!
The Spring Update
Ajug - The Spring Update

Recently uploaded (20)

PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Big Data Technologies - Introduction.pptx
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Electronic commerce courselecture one. Pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPT
Teaching material agriculture food technology
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
A Presentation on Artificial Intelligence
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Big Data Technologies - Introduction.pptx
MYSQL Presentation for SQL database connectivity
Electronic commerce courselecture one. Pdf
Network Security Unit 5.pdf for BCA BBA.
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Teaching material agriculture food technology
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
NewMind AI Monthly Chronicles - July 2025
A Presentation on Artificial Intelligence
Spectral efficient network and resource selection model in 5G networks
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Digital-Transformation-Roadmap-for-Companies.pptx
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Chapter 3 Spatial Domain Image Processing.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf

RESTful Web Services with Spring MVC