Deploy a Spring Boot Application to Google App Engine Cloud DevOps Spring 1. Overview In this tutorial, we’ll show how to deploy an application from our Bootstrap a Simple Application using Spring Boot tutorial to App Engine on Google Cloud Platform. As part of this we’ll: Configure Google Cloud Platform Console and SDK Use… Continue Reading spring-boot-google-app-engine

Refactoring in Eclipse DevOps Eclipse 1. Overview On refactoring.com, we read that “refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.” Typically, we might want to rename variables or methods, or we may want to make our code… Continue Reading eclipse-refactoring

A Guide to JGit 1. Introduction JGit is a lightweight, pure Java library implementation of the Git version control system – including repository access routines, network protocols, and core version control algorithms. JGit is a relatively full-featured implementation of Git written in Java and is widely used in the Java… Continue Reading jgit

Self-Healing Applications with Kubernetes and Spring Boot 1. Introduction In this tutorial, we’re going to talk about Kubernetes‘s probes and demonstrate how we can leverage Actuator‘s HealthIndicator to have an accurate view of our application’s state. For the purpose of this tutorial, we’re going to assume some pre-existing experience with Spring Boot Actuator, Kubernetes, and Docker. 2. Kubernetes… Continue Reading spring-boot-kubernetes-self-healing-apps