Enterprise Java
-
Command-line JSON processing with jq
In this post we will learn how to parse, pretty-print and process JSON from the command-line with jq. At the…
Read More » -
Development in an Isolated Environment – How to Manage Dependencies?
How to build an actual stack of frameworks and libraries for a comfortable development process if you’re working remotely in…
Read More » -
Reduce Repetitive Code in Spring MVC Controllers
After spending some time doing sustained engineering (a.k.a. maintaining legacy code), I ventured to reduce repetitive code in Spring MVC…
Read More » -
Implementing the Proxy Pattern in Java
The Proxy Pattern Proxy is a common software design pattern. Wikipedia does a good job describing it like this: [..]…
Read More » -
Things that make Spring boot Awesome!
For every Java developer Hibernate, Spring are everyday terms. Although recently there was an addition to this list of ‘Spring-boot’.…
Read More » -
The Poison Message SQS Problem
AWS’s SQS is a really reliable and performant solution for transporting requests around a system. A couple of years ago,…
Read More » -
Quick tip: Referencing other Properties in Spring
In Spring property (or yaml) files we can reference other properties using the ${..} syntax. For example: 1 2 3…
Read More » -
AWS Glue – Can not create a Path from an empty string
1. Overview I was receiving this error while trying to run an AWS Glue job that communicated with a DB2…
Read More » -
Developing a Simple Service with Spring Boot
In this post, I will demonstrate how to create a simple web service using Spring Boot. This framework makes it…
Read More »