Centralized Configuration With Spring Cloud Config Server
Spring Cloud Config Server provides remote configuration for your Spring applications or any application running in any language. This tool has been out there for a long time, s...
Automated Dependency Updates with Dependabot
Dependabot is a free and open source tool that has been bought by GitHub and allows you to check for updates on you dependency files. It can be used to update dependencies in R...
Java Memory Model Overview
The JVM utilizes its own memory model, and upon launch, the system allocates memory for the process, which is then shared among various memory areas: Heap Memory: Java objec...
Moving Beyond REST with GraphQL
GraphQL is a query language that matches up with Domain Driven Design, so you can use your existing entities or models in your GraphQL design. This query language was created b...