Skip to main content

3 posts tagged with "REST API"

View All Tags

· 8 min read
Greg Glazewski

HATEOAS

RESTful API without HATEOAS is not a RESTful API by definition. The majority of developers refrain from using HATEOAS because it comes with extra complexity, its value is questionable and it’s not popular in general.

Let’s explore HATEOAS hands-on and see if those concerns hold. You will learn how to implement HATEOAS on the server side and the client side using libraries and get access to working code on GitHub.

· 5 min read
Dusan Odalovic

Elephants

Gzip compression is a way of making files smaller on the web, which can improve the performance and efficiency of your vert.x based REST APIs. However, it also has some drawbacks and trade-offs that you need to consider.

In this blog post, I will explain what gzip compression is, how it works, and how you can enable or disable it in your vert.x REST API. I will also discuss the pros and cons of enabling or disabling gzip compression in different scenarios.