In Jersey there is an @BeanParam annotation with which I can have query parameters mapped to bean attributes.
In Spring, I can only find @RequestBody , which obviously works with the request body, and not with the request parameters.
Is there a way to have request parameters mapped to a bean using Spring?
source share