Spring WebFlux Essentials 11 - Reactive POST and PUT

preview_player
Показать описание
DevDojo Academy is bringing to you another exceptional Spring playlist. Spring WebFlux Essentials.
Spring WebFlux essentials follow the same style of our Spring Boot Essentials and Project Reactor Essentials.
This time, DevDojo will guide you step-by-step over the essential you need to know about WebFlux with R2DBC.
From the setup, connecting to the Postgres database, reactively securing the endpoints, unit and integration tests, documenting with SpringDoc OpenAPI, and more.

Рекомендации по теме
Комментарии
Автор

I know this series is a couple years old, so might not get a response.

I'm getting a 500 instead of 404 when updating a bad ID. Any ideas why?

Thanks for this series!

finnimcfinger
Автор

There is a small implementation aspect for POST which can be improved. If Anime already exists it should return 200 OK whereas when it creates a new one it should generally return 201 Created.

harryalto
Автор

The ending and starting is tooo noisy.

lifewinsful
Автор

Why do you assign id to the anime. It's already there, isn't it?
.map(animeFound ->
looks like redundant operation

olegsabfir