Spring MVC - 12. Delete

preview_player
Показать описание
Spring MVC - 12. Delete

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

The better design is not a hard delete, but a soft delete. So that means, the entry still remains in the DB but has a flag isActive = false, or isDeleted_ = true, and increment a version #. So the latest version of that entry will have either one of those flags to indicate it is 'deleted'.

DucaTech
Автор

Hi Teddy
You made the Running App in Java and C#. Which did you enjoy more and why?

wiekusviljoen
Автор

What are the pros and cons of using @GetMapping over @DeleteMapping (besides the @Delete being a post request, and @Get a get request)?

damjandjordjevic