VOOZH about

URL: https://thenewstack.io/openjdk-provider-azul-systems-weighs-in-on-java-19/

⇱ OpenJDK Provider Azul Systems Weighs in on Java 19 - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2022-10-11 09:18:31
OpenJDK Provider Azul Systems Weighs in on Java 19
Open Source / Software Development

OpenJDK Provider Azul Systems Weighs in on Java 19

Simon Ritter, deputy CTO of OpenJDK provider Azul Systems, takes a look at key new features in Java 19.
Oct 11th, 2022 9:18am by Darryl K. Taft
👁 Featued image for: OpenJDK Provider Azul Systems Weighs in on Java 19
Image via Pixabay.

After Oracle delivered Java 19 recently, Simon Ritter, Deputy CTO of Azul Systems, met with The New Stack to share some technical insight on the features of the release — also known as Java Development Kit (JDK) 19 — and how it differs from the older versions. Azul is a key contributor to the OpenJDK project and the provider of the Zulu OpenJDK distribution.

👁 Image

Simon Ritter

What sets Java 19 apart from its predecessors?

JDK 19 continues the steady pace of development for the Java platform, the tenth release since the switch to a time-based, six-month release cadence. This release, like most, is classified as a feature release rather than long-term support (LTS) release, meaning it is unlikely that users will deploy it in production unless they use a systematic CI/CD strategy and can change JDK without issue.

What are some of the key new features?

All the JDK Enhancement Proposals (JEPs) included with JDK 19 (excluding JEP 422 Linux/RISC-V port) are either preview features or incubator modules. This indicates that they are still subject to change before becoming final.

The two big JEPs in JDK 19 are part of the larger Project Loom, intended to enable better and more scalable concurrency in Java. The first part of this is JEP 425, Virtual Threads. Rather than mapping each JVM [Java Virtual Machine] thread to an operating system (OS) thread, multiple JVM threads can share an OS thread. The JVM is responsible for scheduling and context-switching the Java threads. This is useful in web-based applications that handle very high numbers of connections that spend long periods idle (for example, when a user is making a decision). Rather than holding an OS thread (which are more limited in number), many connections can share a single OS thread and only use it when required.

The second part is JEP 428, Structured Concurrency. This aims to simplify Java concurrent programs by treating multiple tasks running in different threads (forked from the same parent thread) as a single unit of work. JEP 428 provides a mechanism to split a task into concurrent subtasks, which all return to the same place: the task’s code block. An obvious question related to this is how does this differ from the existing ForkJoinPool functionality? ForkJoinPool is designed to handle compute-intensive tasks, whereas the structured concurrency API is for I/O-intensive tasks.

What else strikes your fancy regarding Java 19?

At the Java language level, there is an update to Pattern Matching for Switch. The most significant change is to use when rather than for guarded patterns. In addition, JEP 405 introduces more Pattern Matching this time for records. By matching against a record type declaration, the compiler can handle deconstruction, and the record’s elements can be accessed directly.

The Foreign Function and Memory (FFAM) API has been moved to a preview feature from an incubator module. This is part of Project Panama, which replaces the Java Native Interface (and also provides a public API for some of the functionality in sun.misc.Unsafe). The Vector API (not to be confused with the Vector collections class) has been updated and provides closer integration with the FFAM API. This API aims to enable programmer-level control of using SIMD vector operations at the CPU level.

In summary, JDK 19 is another release with lots to appeal to developers and keeps the Java platform moving forward.

TRENDING STORIES
Darryl K. Taft covers DevOps, software development tools and developer-related issues from his office in the Baltimore area. He has more than 25 years of experience in the business and is always looking for the next scoop. He has worked...
Read more from Darryl K. Taft
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.