Explore Jersey Request Parameters 1. Introduction Jersey is a popular Java framework for creating RESTful web services. In this tutorial, we’ll explore how to read different request parameter types via a simple Jersey project. 2. Project Setup Using Maven archetypes, we’ll be able to generate a working project for our… Continue Reading jersey-request-parameters

Headers, Cookies and Parameters with REST-assured 1. Overview In this quick tutorial, we’ll explore some REST-assured advanced scenarios. We explored REST-assured before in the tutorial a Guide to REST-assured. To continue, we’ll cover examples that show how to set headers, cookie and parameters for our requests. The setup is the… Continue Reading rest-assured-header-cookie-parameter

REST Query Language with Querydsl Web Support 1. Overview In this quick tutorial, we’ll discuss the Spring Data Querydsl Web Support. This is definitely an interesting alternative to all the other ways we focused on in the main REST Query Language series. 2. The Maven Config First, let’s start with… Continue Reading rest-api-search-querydsl-web-in-spring-data-jpa

Guide to Apache Commons MultiValuedMap 1. Overview In this quick tutorial, we’ll have a look at the MultiValuedMap interface provided in the Apache Commons Collections library.  MultiValuedMap provides a simple API for mapping each key to a collection of values in Java. It’s the successor to org.apache.commons.collections4.MultiMap, which was deprecated in Commons Collection 4.1. 2. Maven… Continue Reading apache-commons-multi-valued-map