Posts
All the articles I've posted.
-
Jersey (JAX-RS) JSON HTTP entity payload processing example
JSON (JavaScript Object Notation) is the most used structured data interchange format of the current generation. It is very common for REST clients to use it for data exchange. Several web client frameworks (e.g. AngularJS) natively handle
-
Jersey (JAX-RS) multiple files upload example
Jersey (JAX-RS) supports multiple files upload. A dynamic number of files can also be uploaded. In this tutorial we will solve the following problems: Upload more than one file. Upload dynamic numbers of files. Support to upload multiple fi
-
Jersey (JAX-RS) single file upload example
Jersey provides an easy mechanism to let clients upload files to the server. In this tutorial, we will learn a single file upload to Jersey (JAX-RS) endpoint. 1. Include Jersey media multipart dependency in Gradle File: build.gradle (snippe
-
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