By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: Java 25, the Next LTS Release, Delivers Finalized Features and Focus on Performance and Runtime
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > Java 25, the Next LTS Release, Delivers Finalized Features and Focus on Performance and Runtime
News

Java 25, the Next LTS Release, Delivers Finalized Features and Focus on Performance and Runtime

News Room
Last updated: 2025/09/16 at 3:44 PM
News Room Published 16 September 2025
Share
SHARE

Oracle has released version 25 of the Java programming language and virtual machine. As the first LTS release since JDK 21, the final feature set includes 18 JEPs, seven of which have been finalized. Nine of these features are focused on performance and runtime. The JEPs in this final feature set are:

Seven of these, Scoped Values, Key Derivation Function API, Module Import Declarations, Compact Source Files and Instance Main Methods, Flexible Constructor Bodies, Compact Object Headers and Generational Shenandoh, are finalized after having evolved from their respective incubations and previews with the exception of the latter two that were experimental features in JDK 24.

This release also provides a focus on performance and runtime as nine of these JEPs are under the auspices of Project Leyden and the HotSpot JVM. This includes two JEPs, Ahead-of-Time Command-Line Ergonomics and Ahead-of-Time Method Profiling, that join JEP 483, Ahead-of-Time Class Loading & Linking, the first feature delivered by Project Leyden in JDK 24.

Shown in the graph below, as presented in this Oracle blog post, are the number of JEPs in each Java release since JDK 8.

We examine some of these JEPs, discuss the JDK 25 Launch Event, and update our predictions for features that may be included in JDK 26.

JFR Method Timing & Tracing

JEP 520, JFR Method Timing & Tracing, proposes to extend the JFR with facilities for method timing and tracing via the bytecode Instrumentation interface. Two new JFR events, jdk.MethodTiming and jdk.MethodTrace, used in the MethodTimingEvent and MethodTraceEvent classes, respectively, accept a filter to select the appropriate methods for timing and tracing.

Compact Object Headers

JEP 519, Compact Object Headers, proposes to promote this feature from experimental to product. Inspired by Project Lilliput, this feature “reduces the size of object headers in the HotSpot JVM from between 96 and 128 bits down to 64 bits on 64-bit architectures.” More details on JEP 519 may be found in this InfoQ news story.

JFR Cooperative Sampling

JEP 518, JFR Cooperative Sampling, proposes to “improve the stability of the JDK Flight Recorder (JFR) when it asynchronously samples Java thread stacks.” This is accomplished by traversing call stacks at safepoints, i.e., a point where a thread is suspended at a well-defined code location.

Ahead-of-Time Method Profiling

JEP 515, Ahead-of-Time Method Profiling, proposes to improve application warmup time by “making method-execution profiles from a previous run of an application instantly available, when the HotSpot JVM starts.” This allows the JIT compiler to immediately generate native code upon application startup as opposed to waiting for profiles to be collected.

Ahead-of-Time Command-Line Ergonomics

JEP 514, Ahead-of-Time Command-Line Ergonomics, proposes to simplify the process of creating ahead-of-time caches, as described in JEP 483, Ahead-of-Time Class Loading & Linking, that may accelerate Java application startup by “simplifying the commands required for common use cases.“

JFR CPU-Time Profiling (Experimental)

JEP 509, JFR CPU-Time Profiling (Experimental), the only new experimental feature in this release, proposes to enhance the JFR to utilize the Linux kernel CPU timer that accurately measures CPU-cycle consumption. This will provide the ability to capture CPU-time profiling information on Java applications.

JDK 25 Launch Event

The JDK 25 Launch Event, live-streamed on September 16, 2025 from the Oracle site in Redwood Shores, CA, featured: performance updates from JDK 21 to JDK 25 with Mikael Vidstedt, Senior Director, Java Virtual Machine at Oracle; security updates from JDK 21 to JDK 25 with Poonam Parhar, Senior Product Manager at Oracle; the evolution of Java AI Libraries with Chad Arimura, Vice President, Java Developer Relations at Oracle; Java for AI example demos, including the Heterogeneous Accelerator Toolkit (HAT), with Paul Sandoz, Java Architect at Oracle; and growing the Java platform with Georges Saab, Senior Vice President, Software Development, Java Platform Group at Oracle. There were also numerous example demos showcasing the new features in JDK 25 by Ana-Maria Mihalceanu, Billy Korando and Nicolai Parlog, Java Developer Advocates at Oracle and hosts of the livestream.

JDK 26

Scheduled for a GA release in March 2026, three JEPs have been targeted for JDK 26 at this time. However, based on a number of JEP candidates and drafts, especially those that have been submitted, we can surmise which additional JEPs have the potential to be included in JDK 26.

JEP 522, G1 GC: Improve Throughput by Reducing Synchronization, has been Targeted for JDK 26. This JEP proposes to reduce the overhead of the G1 garbage collector to improve synchronization between application threads and GC threads.

JEP 517, HTTP/3 for the HTTP Client API, has been Targeted for JDK 26. This JEP proposes to “update the HTTPClient API to support the HTTP/3 protocol, so that libraries and applications can interact with HTTP/3 servers with minimal code change.“.

JEP 504, Remove the Applet API, has been Targeted for JDK 26. This JEP proposes to remove the Applet API, deprecated in JDK 17, due its continued obsolescence since applets are no longer supported in web browsers.

JEP Draft 8358541, Post-Quantum Hybrid Key Exchange for TLS 1.3, proposes to enhance the implementation of RFC 8446, Transport Layer Security (TLS) Protocol Version 1.3, using the Hybrid Key Exchange in TLS 1.3 specification, currently being drafted by the Internet Engineering Task Force (IETF), used in conjunction with JEP 496, Quantum-Resistant Module-Lattice-Based Key Encapsulation Mechanism, delivered in JDK 24.

Please note that draft JEPs may be subject to change at any time.

The formal release date for JDK 26 is expected to be March 2026, soon to be proposed by Mark Reinhold, Chief Architect, Java Platform Group at Oracle. Developers can anticipate a feature freeze in early-December 2025.

More details on additional JEPs released in JDK 25 along with other Draft JEPs and candidates may be found in this more detailed InfoQ news story.

JDK 25 may now be downloaded from Oracle with binaries from other vendors expected to become available in the coming days.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article Linking Gemini’s IPO To Mutuum’s Momentum | HackerNoon
Next Article Payble is building tools for Africa’s smallest businesses to grow
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

US Tech Giants Race to Spend Billions in UK AI Push
Gadget
Robotics Funding Crests Higher As Figure Lands Another $1B
News
Fred Hutch leaders raise $10M for new AI startup aiming to expedite drug discovery
Computing
Humanoid robot startup Figure raises $1B+ at $39B valuation – News
News

You Might also Like

News

Robotics Funding Crests Higher As Figure Lands Another $1B

4 Min Read
News

Humanoid robot startup Figure raises $1B+ at $39B valuation – News

5 Min Read
News

Today's NYT Connections Hints, Answers for Sept. 17, #829

3 Min Read
News

Game-Changing Savings: Nibble 43% Off the Price of Logitech’s G502 Mouse

4 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?