VOOZH about

URL: https://www.javacodegeeks.com/tag/rest/page/2

⇱ REST Archives - Page 2 of 7 - Java Code Geeks


  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagMay 10th, 2021
    0 2,482

    Supporting bulk operations in REST APIs

    Bulk (or batch) operations are used to perform an action on more than one resource in single request. This can…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagFebruary 24th, 2021
    0 699

    REST API Design: Dealing with concurrent updates

    Concurrency control can be an important part of a REST API, especially if you expect concurrent update requests for the…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagJanuary 22nd, 2021
    0 1,267

    REST: Partial updates with PATCH

    In previous posts we learned how to update/replace resources using the HTTP PUT operation. We also learned about the differences…

    Read More »
  • Enterprise Java👁 spring-interview-questions-answers
    Eidher JulianDecember 14th, 2020
    0 192

    Spring MVC REST

    Representational state transfer (REST) is an architectural style that describes best practices to expose web services over HTTP, emphasizing performance,…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagNovember 20th, 2020
    1 235

    REST: Sorting collections

    When building a RESTful API we often want to give consumers the option to order collections in a specific way…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagNovember 5th, 2020
    0 218

    REST: Updating resources

    When building RESTful APIs over HTTP the PUT method is typically used for updating, while POST is used for creating…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Michael ScharhagOctober 14th, 2020
    0 563

    REST: Deleting resources

    In RESTful APIs resources are typically deleted using the HTTP DELETE method. The resource that should be deleted is identified…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Alex TheedomOctober 9th, 2020
    0 193

    Richardson Maturity Model and Pizzas

    The model, developed by Leonard Richardson, attempts to classify an API according to its adherence to the constraints imposed by…

    Read More »
  • Enterprise Java👁 java-interview-questions-answers
    Alex TheedomOctober 3rd, 2020
    0 662

    RAML: Four ways to define examples

    Defining an example body payload and response for a RESTful API endpoint is an essential aspect of designing a modern…

    Read More »
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
  • ...
  • Last
Back to top button
Close