I\'m trying to bind values in a GET request to a POJO.
The values are parameters in a HTTP GET request. I\'m using JSONP to pass the parameters however it looks like JS
HTTP GET by specification includes the parameters in the URL - therefore it only accepts value pairs. So, what you are trying to do is not feasible. why don't you use a POST instead to bundle a JSON object together with the request?