Issue
How can I get queryparam
support of restful web service by spring in true restful manner...
for example i have url like following
localhost:8080/myapp/booksearch/title/{title}/author/{author}?sortby=relevance&year=2013
title and author I can get by @PathVariable
.....
where i want sortby and year optional..
Solution
You can use the @RequestParam
annotation on method parameters
@RequestMapping (...)
public String getBooks(@RequestParam(required = false, value = "sortby") String sortBy, @RequestParam(required = false, value = "year") String year) {...}
The @RequestParam
annotation also has a defaultValue
attribute to use as a value if the request parameter isn't provided. Without it, if the parameter is not provided, null
will be passed as the argument for that parameter.
Answered By - Sotirios Delimanolis
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.