Java Development Kit (JDK) 24 has officially launched as a production release, offering developers an array of new features and enhancements. Unlike long-term support (LTS) releases, which receive at least five years of Premier-level support from Oracle, JDK 24 is a short-term support release and will be supported for six months. Despite this shorter support window, JDK 24 packs a punch, delivering about two dozen new features—double the amount introduced in its predecessor, JDK 23.
Among the latest additions are important security and concurrency improvements. JDK 24 introduces runtime warnings when developers use memory access methods from the deprecated sun.misc.Unsafe
class, encouraging migration to safer, standard APIs. Another highlight is the fourth preview of structured concurrency, which aims to simplify the handling of concurrent tasks by grouping related threads into a single unit of work. This helps improve error handling, cancellation, and overall code observability, making concurrent programming more robust and easier to maintain.
JDK 24 also marks the deprecation of the 32-bit x86 port, signaling its eventual removal in the next release. This move is aligned with the broader industry shift away from 32-bit architecture, reflecting the growing focus on 64-bit systems. After removal, the Zero port, which is architecture-agnostic, will remain the only way to run Java on 32-bit x86 processors. This streamlining effort is expected to reduce maintenance overhead and encourage developers to target more modern platforms.
Several features in JDK 24 cater specifically to the growing AI and performance needs of modern applications. Enhancements like primitive types in patterns and an improved vector API make it easier to integrate efficient AI inference and computation within Java programs. Additionally, new quantum-resistant cryptographic algorithms strengthen Java’s defenses against future quantum computing threats. Looking ahead, the next major milestone will be JDK 25, an LTS release planned for September, which will build upon the foundation laid by JDK 24.