Wednesday 6 March 2024

Differences between map() and flatMap() stream operations in Java

Let’s explore the differences between map() and flatMap() stream operations in Java, along with examples: 

  1. map(): 

    • Role: The map() operation is used to transform each element of a stream into another object using a given function. 

    • Functionality: 

      • Produces one output for each input value. 

      • Maintains the same order as the original stream. 

      • Transformation is one-to-one. 

    • Example: 

        List<String> listOfStrings = Arrays.asList("1", "2", "3", "4", "5"); 

        List<Integer> listOfIntegers = listOfStrings.stream() 

        .map(Integer::valueOf) 

        .toList(); 

        // Output: [1, 2, 3, 4, 5] 


flatMap():

        Role: The flatMap() operation is used when each element in the stream is transformed into multiple elements, often in the form of another collection or stream. 

      Functionality: 

    • Produces arbitrary number of values for each input. 

    • Flattens the resulting elements into a single stream. 

    • Transformation is one-to-many (map() + flattening).  

       Example:

                    List<List<Integer>> listOfLists = Arrays.asList( 

                    Arrays.asList(1, 2, 3), 

                    Arrays.asList(4, 5), 

                    Arrays.asList(6, 7, 8) 

                ); 

                    List<Integer> flattenedList = listOfLists.stream() 

                    .flatMap(list -> list.stream()) 

                    .toList(); 

                    // Output: [1, 2, 3, 4, 5, 6, 7, 8] 



keep Learning Keep Coding......

 

Friday 15 July 2022

Standard for Restfull API


 
The concept of REST is to separate the API structure into logical resources. There are used the HTTP methods GET, DELETE, POST and PUT to operate with the resources.
These are some best practices to design a clean RESTful API:

1. Use nouns but no verbs-

For an easy understanding use this structure for every resource:
Do not use verbs:
/getAllCars
/createNewCar
/deleteAllRedCars

2. GET method and query parameters should not alter the state-

Use PUT, POST and DELETE methods  instead of the GET method to alter the state. Do not use GET for state changes:
GET /users/711?activate or
GET /users/711/activate

3. Use plural nouns-

Do not mix up singular and plural nouns. Keep it simple and use only plural nouns for all resources.
/cars instead of /car
/users instead of /user
/products instead of /product
/settings instead of /setting

4. Use sub-resources for relations-

If a resource is related to another resource use subresources.
GET /cars/711/drivers/ Returns a list of drivers for car 711
GET /cars/711/drivers/4 Returns driver #4 for car 711

5. Use HTTP headers for serialization formats-

Both, client and server, need to know which format is used for the communication. The format has to be specified in the HTTP-Header.
Content-Type defines the request format.
Accept defines a list of acceptable response formats.

6. Provide filtering, sorting, field selection and paging for collections-

Filtering:
Use a unique query parameter for all fields or a query language for filtering.
GET /cars?color=red Returns a list of red cars
GET /cars?seats<=2 Returns a list of cars with a maximum of 2 seats
Sorting:
Allow ascending and descending sorting over multiple fields.
GET /cars?sort=-manufactorer,+model
This returns a list of cars sorted by descending manufacturers and ascending models.
Field selection:
They don’t need all attributes of a resource. Give the API consumer the ability to choose returned fields. This will also reduce the network traffic and speed up the usage of the API.
GET /cars?fields=manufacturer,model,id,color
Paging:
Use limit and offset. It is flexible for the user and common in leading databases. The default should be limit=20 and offset=0
GET /cars?offset=10&limit=5
To send the total entries back to the user use the custom HTTP header: X-Total-Count.
Links to the next or previous page should be provided in the HTTP header link as well. It is important to follow this link header values instead of constructing your own URLs.

7. Handle Errors with HTTP status codes-

It is hard to work with an API that ignores error handling. Pure returning of a HTTP 500 with a stacktrace is not very helpful.
Use HTTP status codes
The HTTP standard provides over 70 status codes to describe the return values. We don’t need them all, but  there should be used at least a mount of 10.
200 – OK – Eyerything is working
201 – OK – New resource has been created
204 – OK – The resource was successfully deleted
304 – Not Modified – The client can use cached data
400 – Bad Request – The request was invalid or cannot be served. The exact error should be explained in the error payload. E.g. „The JSON is not valid“
401 – Unauthorized – The request requires an user authentication
403 – Forbidden – The server understood the request, but is refusing it or the access is not allowed.
404 – Not found – There is no resource behind the URI.
422 – Unprocessable Entity – Should be used if the server cannot process the enitity, e.g. if an image cannot be formatted or mandatory fields are missing in the payload.
500 – Internal Server Error – API developers should avoid this error. If an error occurs in the global catch blog, the stracktrace should be logged and not returned as response.

 
Happy Coding... :)