Enterprise Java
-
Extend Hibernate to Handle Java Stream Queries
The Java Stream API released in Java 8 has proven itself to be an efficient, terse yet intuitive way of…
Read More » -
ElasticSearch Multitenancy With Routing
Elasticsearch is great, but optimizing it for high load is always tricky. This won’t be yet another “Tips and tricks…
Read More » -
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 »