Spring Boot REST API Anti-Patterns and Best Practices

Поделиться
HTML-код
  • Опубликовано: 24 дек 2024

Комментарии • 12

  • @hasanoren2166
    @hasanoren2166 17 дней назад +1

    Thank you so much.

  • @Mr3dvinas
    @Mr3dvinas 9 месяцев назад

    Amazing thank you brother !!

  • @momedalhouma14
    @momedalhouma14 9 месяцев назад

    Thank you si a for the wonderful effort

  • @nareshn6628
    @nareshn6628 2 месяца назад

    good content, thank you

  • @ajitnayak9t99
    @ajitnayak9t99 9 месяцев назад

    Useful tutorial things!

  • @abdelrahman2348
    @abdelrahman2348 2 месяца назад

    It would be amazing as well if you did best practice one with a similar great explanation

  • @zickzack987
    @zickzack987 6 месяцев назад

    Only the first topic covers "Rest". Url naming patterns and certain status codes are not mandatory to be restful. Only a uniform interface.

  • @nagkumar
    @nagkumar 9 месяцев назад

    production-ready is also highly claimed too --> hence reworded as is the DONE #productEconomy scale ready

  • @mohamedshaker7528
    @mohamedshaker7528 5 месяцев назад

    I've an enhancement on the pagination request you could use the
    one based index instead of subtracting to be zero by just providing the property on the application propertise
    spring:
    data:
    web:
    pageable:
    one-indexed-parameters: true

  • @dishaarya3459
    @dishaarya3459 8 месяцев назад

    Sir, kindly make the tutorial over Servlet JSP JDBC so that our prerequisites are clear.

  • @universal4334
    @universal4334 8 месяцев назад

    Can i do a post for getting things if i have a nested hierarchy like a category inside multiple categories, then brand inside multiple brands, then size where I'll be having lot of sizes. So if i want to pass multiple categories, brands, and sizes to get info

    • @sivalabs
      @sivalabs  8 месяцев назад

      REST principles are more of guidelines than rules. Sometimes we have to use POST for getting the information due to the payload limitation of GET request. For example Elasticsearch uses POST for fetching matching documents.