Stream
Everything I publish, watch, read, and note — in one chronological feed.
- Post
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
- Post
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
- Post
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
- Post
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
- Post
Jersey (JAX-RS) HTTP methods examples on Resources and Sub Resources
In this guide we will learn about implementing HTTP methods like GET, POST, PUT and DELETE using Jersey (JAX-RS). In theory these HTTP methods used for following purposes: GET: It represents one or a list of resources or sub resources. POST
- Post
Native HTML5 Component Development using Web Components & Polymer - Whitepaper
Introduction Our expectation from technologies is never-ending; we keep on revolutionizing the way we do our web development and enrich users’ experiences. Browsers have come a long way and they have implemented the ever-changing standards.
- Post
Index and Search structured XML documents using Apache Solr
Apache Solr is a highly scalable search engine with lots of goodies inbuilt. In this guide we will learn how to get our structured data in XML can be indexed and searched effectively. We will learn the following concepts: Starting up Apache
- Post
Jersey (JAX-RS) Resources URI mapping with @Path
In this guide, we will learn Jersey(JAX-RS) Resources and Sub Resources concepts as well as mapping of API HTTP URI using @Path annotation. Specifically, we will go through the following concepts and examples: Root Resources (Resources) Sub
- Post
Jersey (JAX-RS) + Spring Boot quick starter guide
In this guide we will set up a project to use Jersey (JAX-RS) API on Spring Boot based application. At the end of the guide you will know following stuffs: Setting up Jersey project on Spring Boot using Gradle build system. Testing a basic
- Post
MongoDB Installation & Getting Started
MongoDB is one of the most popular open-source document NoSQL databases. In this tutorial we will learn the following things: Installation of MongoDB Creating data directory Starting and Stopping MongoDB Running Shell Commands Installation