-
Bug
-
Resolution: Done
-
Minor
-
4.5.3.Final
-
None
When configuring RESTEasy with resteasy.use.container.form.params = true and using a Filter which reads parameters before the resource, a body of type MultivaluedMap<String, String> will receive all parameters while a body of type Form will be empty.
@Path("/") public class MyResource { @POST @Path("/foo") public Response foo(Form form) { // form is empty } @POST @Path("/bar") public Response bar(MultivaluedMap<String, String> map) { // map is filled } }