Basic Introduction to JMX 1. Introduction The Java Management Extensions (JMX) framework was introduced in Java 1.5 and has found widespread acceptance in the Java developers community since its inception. It provides an easily configurable, scalable, reliable and more or less friendly infrastructure for managing Java application either locally or… Continue Reading java-management-extensions

Model, ModelMap, and ModelView in Spring MVC 1. Overview In this article, we’ll look at the use of the core org.springframework.ui.Model, org.springframework.ui.ModelMap and org.springframework.web.servlet.ModelView provided by Spring MVC. 2. Maven Dependencies Let’s start with the spring-context dependency in our pom.xml file: <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.3.11.RELEASE</version> </dependency> The latest version of… Continue Reading spring-mvc-model-model-map-model-view

Guide to Java 8 Comparator.comparing() 1. Overview Java 8 introduced several enhancements to the Comparator interface, including a handful of static functions that are of great utility when coming up with a sort order for collections. Java 8 lambdas can be leveraged effectively with the Comparator interface as well. A… Continue Reading java-8-comparator-comparing

Introduction to Spring Data Elasticsearch Algorithms Exception 1. Overview In this article we’ll explore the basics of Spring Data Elasticsearch in a code-focused, practical manner. We’ll show how to index, search, and query Elasticsearch in a Spring application using Spring Data – a Spring module for interaction with a popular… Continue Reading spring-data-elasticsearch-test

Introduction to the Functional Web Framework in Spring 5 1. Introduction Spring WebFlux framework introduces a new functional web framework built using reactive principles. In this tutorial, we’ll learn how to work with this framework in practice. We’ll base this off of our existing tutorial Guide to Spring 5 WebFlux.  In… Continue Reading spring-5-functional-web