I have this kind of sample code below that calls an API using get method:
CrudService.getAll("sampleurl/param1/param2/param3");
From that sample, param1 and param2 can be null/blank value. What happens is that the value of param3 goes to param1 when it comes to the API Controller.
How can I maintain the right values for the parameter even if there can be several null/blank values? TIA.