Jersey (JAX-RS) @FormParam HTML form data handling
There are multiple ways for consuming HTML form data (application/x-www-form-urlencoded) in Jersey. Using @FormParam annotation we can inject Form values in the Resource method. We can use it just like other @*Param. Jersey resource method needs to know they have to handle HTML form data, for it we explicitly specify @Consumes(“application/x-www-form-urlencoded”). There are multiple ways in which we can handle …
Jersey (JAX-RS) @FormParam HTML form data handling Read More »