Articles, Home

Manning | Deal of the Day

“A clear and concise introduction to Java’s long-awaited module system!” —Jim Wright, Sword Apak The Java Module System is your gu….

Articles, Home

Refactor polymorphism using Java 8

I have an old code base that I need to refactor using Java 8, so I have an interface, which tells whether my current site supports the platform.public interface PlatformSupportHandler { public

Articles, Home

Develop a Kubernetes controller in Java

Authors: Min Kim (Ant Financial), Tony Ado (Ant Financial)The official Kubernetes Java SDK project recently released their latest work on providing the Java Kubernetes developers a handy Kubernetes controller-builder SDK which is helpful for easily developing advanced workloads or systems.Overall Java is no doubt one of the most popular programming languages in the world but it’s been difficult for a period time for those non-Golang developers to build up their customized controller/operator due to the lack of library resources in the community.

Articles, Home

Java Pass-by-Value vs. Pass-by-Reference – HowToDoInJava

There has been a good amount of debate on whether “java is pass by value or pass by reference?”. Well, lets conclude it last time, Java is pass by value and not pass by reference. If it had been pass by reference, we should have been able to C like swapping of objects, but we …