Tag: archive
All the articles with the tag "archive".
-
Jersey (JAX-RS) matrix URI parameters handling guide
URL with matrix URI looks like: https://www.example.com/map;lat=50;long=20;scale=32000 ;lat=50;long=20;scale=32000 represents matrix parameters. Please refer W3C article on it . Using @MatrixParam annotation we can get matrix parameters val
-
Working with request cookie in Jersey (JAX-RS) guide
Usually, RESTful web services will not use request cookies. There might be some cases where we need it. We had tested or used the following tools and technologies in this project: Jersey (v 2.21) Gradle Build System (v 2.9) Spring Boot (v 1
-
Working with request header in Jersey (JAX-RS) guide
In the previous post , we talked about, how to get parameters and their values from the request query string. In this guide learn how to get request header values in Jersey (JAX-RS) based application. We had tested or used the following too
-
Jersey (JAX-RS) extracting client HTTP request parameter query string data
In previous post, we talked about, how to use @PathParam annotation to extract the client passed path variable from API HTTP URI, which we defined using @Path annotation. In this guide we will provide example to extract information from HTT