Java’s Quirky Side: Unmasking the Mysteries of Strings, Floats, and Nulls Java, the stalwart of enterprise applications, often hides intriguing puzzles beneath its seemingly straightforward surface. Beyond the familiar terrain of classes and objects lie subtle quirks that can trip up even seasoned developers. In this article, we’ll embark on...
[Read More]
What’s New in Java 23
A Practical Guide for Developers.
What’s New in Java 23: A Practical Guide for Developers Java 23, the latest release in the Java ecosystem, brings a host of exciting new features, performance improvements, and enhancements that modern developers will appreciate. This article explores the most significant updates in Java 23 and how they impact your...
[Read More]
Java 17, What's New?
In this article, we will check what was added and removed in Java 17.
The JDK 17 is a long-term support (LTS) version, which means it has Oracle support for many years to come. Other LTS JDKs are Java 8 and Java 11. LTS JDKs are released every three years and non-LTS every six months. JDK 17 reached General Availability on 14 September 2021....
[Read More]
Vert.x TFTP Client
Vert.x TFTP Client Trivial File Transfer Protocol (TFTP) is a simple lockstep File Transfer Protocol which allows a client to get a file from or put a file onto a remote host. One of its primary uses is in the early stages of nodes booting from a local area network....
[Read More]
Vert.x Event-bus, Sending any java object with Generic Codec
The Event Bus The event-bus is the nervous system of Vert.x.There is a single event bus instance for every Vert.x instance and it is obtained using the method event-bus. Sending Message Messages are sent on the event bus to an address. Out of the box Vert.x allows any primitive/simple type,...
[Read More]