SlideShare a Scribd company logo
From CRUD to
Hypermedia APIs with Spring
Volodymyr Tsukur, GlobalLogic
REST
2
Vladimir Tsukur
partner @
engineer @
engineer /
architect @
flushdia vtsukur
3
Web API? Why Should I Care?
Идея! ЧЕРНЫЙ
РЫНОК ВАЛЮТ!
5
finance.i.ua - Listing
6
finance.i.ua - Ad Creation
7
8
Spring Boot
Tools
Spring Data
Spring Data REST
CODING TIME !
10
CRUD Style API
Method URL Task
POST /ads Create ad
GET /ads View ads
GET /ads/{id} Get ad
PATCH /ads/{id} Update ad
DELETE /ads/{id} Delete ad
11
Должен же
быть БИЗНЕС-
ПРОЦЕСС!
12
if (status == Status.NEW) {
publishedAt = LocalDateTime.now();
status = Status.PUBLISHED;
} …
CRUD is NOT enough
if (status == Status.NEW) {
publishedAt = LocalDateTime.now();
status = Status.PUBLISHED;
} …
13
API Changes
Method URL Task
POST /ads/{id}/publishing Publish ad
POST /ads/{id}/expiration Expire ad
GET /ads/search/published
Get published
ads
CODING TIME !
/uri Style Adoption?
43%
16
17
URI Binding & Construction
Task Method URL
Update ad PATCH /ads/{id}
Delete ad DELETE /ads/{id}
Publish ad POST
/ads/{id}/
publishing
Expire ad POST
/ads/{id}/
expiration
18
"Figuring" Out the Flow
Task Method URL
Update ad
(only if NEW) PATCH /ads/{id}
Delete ad
(only if NEW) DELETE /ads/{id}
Publish ad
(only if NEW) POST
/ads/{id}/
publishing
Expire ad
(only if
PUBLISHED)
POST
/ads/{id}/
expiration
Должно работать
на моем iPhone 6s!
20
21
Hypermedia =
{
"amount": 3000,
"currency": "USD",
…
}
data
{
…
"_links": {
"publishing": {
"href": "/ads/1/publishing"
},
"update": {
"href": "/ads/1"
},
"deletion": {
"href": "/ads/1"
},
…
}
}
links
+
22
Hypermedia API
Link
Relation
Task Method
update Update ad PATCH
deletion Delete ad DELETE
publishing Publish ad POST
expiration Expire ad POST
23
Tools
Spring HATEOAS
CODING TIME !
25
HAL = Hypertext Application
Language
"I want hypermedia!"
40%
27
28
Siren Actions
"actions": [
{
"name": "create-ad",
"method": "POST",
"href": "/ads",
"type": "application/json",
"fields": [
{ "name": "type", "type": "radio" },
{ "name": "quantity", "type": "number" },
{ "name": "currency", "type": "radio" },
…
]
}
]
Хочу
какой-нить
удобный
браузер для
HAL …
и быстро!!
SHOW TIME !
Стоп! А
тестирование? А
документация?
32
"From CRUD to Hypermedia APIs with Spring" Владимир Цукур
34
Outcomes -
1. Spring Data REST - simple, CRUD-
y and HATEOAS-y; extensible
PRO TIP: won't solve everything
2. Spring MVC - always there to help
3. Link stuff with Spring HATEOAS
4. Spring Security to the rescue
when you need to protect API
5. Document with Spring REST Docs
35
Thanks!
Questions?

More Related Content

PDF
From CRUD to Hypermedia APIs with Spring
PDF
From CRUD to Hypermedia APIs with Spring
PDF
Building Awesome API with Spring
PDF
Together Cheerfully to Walk with Hypermedia
PDF
Building Valuable RESTful APIs
PDF
GraphQL - when REST API is to less - lessons learned
PDF
A World Beyond Ajax Accessing Googles Ap Is From Flash And Non Java Script En...
PDF
Software development
From CRUD to Hypermedia APIs with Spring
From CRUD to Hypermedia APIs with Spring
Building Awesome API with Spring
Together Cheerfully to Walk with Hypermedia
Building Valuable RESTful APIs
GraphQL - when REST API is to less - lessons learned
A World Beyond Ajax Accessing Googles Ap Is From Flash And Non Java Script En...
Software development

Viewers also liked (20)

PDF
Александр Корниенко "Как реально построить Dream-team?"
PDF
"The Grail: React based Isomorph apps framework" Эльдар Джафаров
PPTX
"Walk in a distributed systems park with Orleans" Евгений Бобров
PDF
Андрей Уманский и Дмитрий Горин "Нет скучным ретроспективам! Создаём эффектив...
PDF
Алексей Демедецкий | Unit testing in swift
PDF
Павел Тайкало: "Apple watch first steps"
PDF
Максим Климишин "Борьба с асинхронностью в JS"
PDF
"Посмотрим на Акку-Джаву" Дмитрий Мантула
PDF
"Fun with JavaScript and sensors" by Jan Jongboom
PDF
Ruby w/o Rails (Олександр Сімонов)
PDF
"Backbone React Flux" Артем Тритяк
PDF
"Хероковая жизнь" Юрий Литвиненко
PPT
"От разработчика в консультанты - история одного тренера" Александр Баглай
PDF
Анна Лаврова "When Fairy Tale meets Reality: Точность-надежность-дизайн"
PDF
"Выучить язык программирования за 25 минут" Дмитрий Мантула
PPTX
Сергей Больщиков "Angular Components: все уже за, а вы еще нет?"
PPTX
Михаил Чалый "Serverless Architectures using .NET and Azure"
PPTX
"Эффективность и оптимизация кода в Java 8" Сергей Моренец
PPTX
Маргарита Остапчук "Що нового в Windows 10 для розробників"
PPTX
"Война типов: сильные против слабых" Виктор Полищук
Александр Корниенко "Как реально построить Dream-team?"
"The Grail: React based Isomorph apps framework" Эльдар Джафаров
"Walk in a distributed systems park with Orleans" Евгений Бобров
Андрей Уманский и Дмитрий Горин "Нет скучным ретроспективам! Создаём эффектив...
Алексей Демедецкий | Unit testing in swift
Павел Тайкало: "Apple watch first steps"
Максим Климишин "Борьба с асинхронностью в JS"
"Посмотрим на Акку-Джаву" Дмитрий Мантула
"Fun with JavaScript and sensors" by Jan Jongboom
Ruby w/o Rails (Олександр Сімонов)
"Backbone React Flux" Артем Тритяк
"Хероковая жизнь" Юрий Литвиненко
"От разработчика в консультанты - история одного тренера" Александр Баглай
Анна Лаврова "When Fairy Tale meets Reality: Точность-надежность-дизайн"
"Выучить язык программирования за 25 минут" Дмитрий Мантула
Сергей Больщиков "Angular Components: все уже за, а вы еще нет?"
Михаил Чалый "Serverless Architectures using .NET and Azure"
"Эффективность и оптимизация кода в Java 8" Сергей Моренец
Маргарита Остапчук "Що нового в Windows 10 для розробників"
"Война типов: сильные против слабых" Виктор Полищук
Ad

Similar to "From CRUD to Hypermedia APIs with Spring" Владимир Цукур (20)

PDF
From REST to Hypermedia APIs with Spring by Vladimir Tsukur
PDF
Cqrs api v2
PPTX
RESTful API 제대로 만들기
PDF
Automating the API Product Lifecycle
PDF
RefCard RESTful API Design
PDF
Web API Design 2013
PPTX
Android intermediatte Full
PPTX
Android Intermediatte IAK full
PDF
Crafting APIs
PDF
apidays Helsinki & North 2023 -Design first or first design?, Patrick Brosse,...
ODP
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswani
PPTX
PHP on Windows and on Azure
PDF
Cqrs api
PDF
Introduction to CloudStack API
KEY
Creating Professional Applications with the LinkedIn API
PDF
Using a hypermedia API with Angular.js
PPTX
Rest applied
PPTX
PHP on Windows
PPTX
PHP on Windows
PPTX
Startup Safary | Fight against robots with enbrite.ly data platform
From REST to Hypermedia APIs with Spring by Vladimir Tsukur
Cqrs api v2
RESTful API 제대로 만들기
Automating the API Product Lifecycle
RefCard RESTful API Design
Web API Design 2013
Android intermediatte Full
Android Intermediatte IAK full
Crafting APIs
apidays Helsinki & North 2023 -Design first or first design?, Patrick Brosse,...
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswani
PHP on Windows and on Azure
Cqrs api
Introduction to CloudStack API
Creating Professional Applications with the LinkedIn API
Using a hypermedia API with Angular.js
Rest applied
PHP on Windows
PHP on Windows
Startup Safary | Fight against robots with enbrite.ly data platform
Ad

More from Fwdays (20)

PDF
"Mastering UI Complexity: State Machines and Reactive Patterns at Grammarly",...
PDF
"Effect, Fiber & Schema: tactical and technical characteristics of Effect.ts"...
PPTX
"Computer Use Agents: From SFT to Classic RL", Maksym Shamrai
PPTX
"Як ми переписали Сільпо на Angular", Євген Русаков
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
PDF
"Validation and Observability of AI Agents", Oleksandr Denisyuk
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
PPTX
"Co-Authoring with a Machine: What I Learned from Writing a Book on Generativ...
PPTX
"Human-AI Collaboration Models for Better Decisions, Faster Workflows, and Cr...
PDF
"AI is already here. What will happen to your team (and your role) tomorrow?"...
PPTX
"Is it worth investing in AI in 2025?", Alexander Sharko
PDF
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
PDF
"Scaling in space and time with Temporal", Andriy Lupa.pdf
PDF
"Database isolation: how we deal with hundreds of direct connections to the d...
PDF
"Scaling in space and time with Temporal", Andriy Lupa .pdf
PPTX
"Provisioning via DOT-Chain: from catering to drone marketplaces", Volodymyr ...
PPTX
" Observability with Elasticsearch: Best Practices for High-Load Platform", A...
PPTX
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
PPTX
"Istio Ambient Mesh in production: our way from Sidecar to Sidecar-less",Hlib...
"Mastering UI Complexity: State Machines and Reactive Patterns at Grammarly",...
"Effect, Fiber & Schema: tactical and technical characteristics of Effect.ts"...
"Computer Use Agents: From SFT to Classic RL", Maksym Shamrai
"Як ми переписали Сільпо на Angular", Євген Русаков
"AI Transformation: Directions and Challenges", Pavlo Shaternik
"Validation and Observability of AI Agents", Oleksandr Denisyuk
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
"Co-Authoring with a Machine: What I Learned from Writing a Book on Generativ...
"Human-AI Collaboration Models for Better Decisions, Faster Workflows, and Cr...
"AI is already here. What will happen to your team (and your role) tomorrow?"...
"Is it worth investing in AI in 2025?", Alexander Sharko
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
"Scaling in space and time with Temporal", Andriy Lupa.pdf
"Database isolation: how we deal with hundreds of direct connections to the d...
"Scaling in space and time with Temporal", Andriy Lupa .pdf
"Provisioning via DOT-Chain: from catering to drone marketplaces", Volodymyr ...
" Observability with Elasticsearch: Best Practices for High-Load Platform", A...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"Istio Ambient Mesh in production: our way from Sidecar to Sidecar-less",Hlib...

Recently uploaded (20)

PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPT
Teaching material agriculture food technology
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PPTX
Cloud computing and distributed systems.
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Modernizing your data center with Dell and AMD
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Approach and Philosophy of On baking technology
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Mobile App Security Testing_ A Comprehensive Guide.pdf
Teaching material agriculture food technology
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
The AUB Centre for AI in Media Proposal.docx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
CIFDAQ's Market Insight: SEC Turns Pro Crypto
breach-and-attack-simulation-cybersecurity-india-chennai-defenderrabbit-2025....
Chapter 3 Spatial Domain Image Processing.pdf
Empathic Computing: Creating Shared Understanding
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Cloud computing and distributed systems.
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Unlocking AI with Model Context Protocol (MCP)
Modernizing your data center with Dell and AMD
Per capita expenditure prediction using model stacking based on satellite ima...
Approach and Philosophy of On baking technology
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf

"From CRUD to Hypermedia APIs with Spring" Владимир Цукур