Dockerizing a Spring Boot Application 1. Overview In this article we’ll focus on how to dockerize a Spring Boot Application to run it in an isolated environment, a.k.a. container. Furthermore we’ll show how to create a composition of containers, which depend on each other and are linked against each other… Continue Reading dockerizing-spring-boot-application

An Introduction to Java.util.Hashtable Class 1. Overview Hashtable is the oldest implementation of a hash table data structure in Java. The HashMap is the second implementation, which was introduced in JDK 1.2. Both classes provide similar functionality, but there are also small differences, which we’ll explore in this tutorial. 2. When to use Hashtable… Continue Reading java-hash-table

Deploy a Spring Boot Application to OpenShift 1. Overview In this tutorial, we’ll show how to deploy an application from our Bootstrap a Simple Application using Spring Boot tutorial to Openshift. As part of this we’ll: Install and configure Openshift development tools. Create an Openshift project and MySQL deployment. Configure the application for… Continue Reading spring-boot-deploy-openshift

Creating a SOAP Web Service with Spring 1. Overview In this tutorial, we’ll see how to create a SOAP-based web service with Spring Boot Starter Web Services. 2. SOAP Web Services A web service is, in short, a machine-to-machine, platform independent service that allows communication over a network. SOAP is a messaging… Continue Reading spring-boot-soap-web-service