I have a rest call that takes in arbitrary query parameters. To capture these I am using @RequestParam Map queryParams.
I want each entry in the map to be bound to different type e.g. some to date, some to doubles, some to string, etc...
How can I do this?
Any code examples would be helpful.
GM