May 5, 2026
Flexible constructor bodies were added to Java 25 with JEP 513. In this episode of the Inside Java Newscast Billy Korando will review the issues with how constructors used to work before Java 25, either forcing developers to write convoluted code, or in some cases undermining the safety and integrity of child classes....
Apr 23, 2026
In JavaOne 2026’s closing session, audience members had the opportunity to ask the Java architects questions. They asked about the state of structured concurrency and Project Babylon, how Java is being developed and the role AI plays in that process, the architects’ pet projects, and whether they would ever...
Apr 16, 2026
With JDK 26 / JEP 500 starting to prevent final field mutation through reflection, it is important that Java projects stop employing that practice.
For more, check https://inside.java/podcast
Apr 9, 2026
G1 is Java's default garbage collector in most environments, and its throughput has been considerably improved in JDK 26 by streamlining its write barriers. This conversation explores the background of that change and dives deep into regions, write barriers, concurrent marking, card tables, and how all that...
Apr 4, 2026
The Java tool jcmd (“j command”)
sends diagnostic commands to the JVM, which will react by supplying
the desired information: from finalizer queues to heap and thread
dumps, from GC insights to virtual thread scheduler statistics. At
the moment, this requires a running JVM, but once candidate
JEP 528 is
adopted,...