http://localhost:5000/product?cust_id=1&multi_attribute={"size":["xl","small"],"color":["red","green"]}
It is using multiple multi_attributes
. I know how to do it in this way:
size= value1, value2
Also got to know that we can bind the object directly without @RequestParam
.
But what I have to implement is in the above given format and not getting anything to implement this in search.
Anybody has any idea to implement the last parameter multi_attribute
?