Episodes

  • "Keeping Up with the Java Release Train" [I/O]
    34 mins
  • "JSON API, Valhalla Progress, LTS ❤️ PQC" [IJN]
    Aug 15 2026

    JEP 540 proposes to incubate a simple JSON API and is currently proposed to target JDK 28. The pull request for Project Valhalla's JEPs 401 and 539 were merged and value types are available as a preview feature in the latest JDK 28 early-access builds. Oracle plans to backport post-quantum cryptography to Oracle JDKs with LTS (25, 21, 17, 11, and 8) and move Java to monthly security updated (currently quarterly).

    • JDK 28 EA builds: https://jdk.java.net/28/
    • Dan's mail re values: https://mail.openjdk.org/archives/list/core-libs-dev@openjdk.org/thread/Y72NRXM7KYBX43OKYBQMVKOZDWKG4MHS/
    • Angelos' mail re primitive patterns: https://mail.openjdk.org/archives/list/amber-spec-experts@openjdk.org/thread/WSXW4QMJ3EBIHIULEB25HUAMR5JB767H/
    • JEP 540: https://openjdk.org/jeps/540
    • JEP 496: https://openjdk.org/jeps/496
    • JEP 497: https://openjdk.org/jeps/497
    • JEP 572: https://openjdk.org/jeps/572
    • Blog post in PQC in LTS: https://blogs.oracle.com/java/post-quantum-cryptography-in-long-term-support-jdk-releases
    • Accelerated Vulnerability Detection and Response: https://blogs.oracle.com/security/accelerating-vulnerability-detection-and-response-at-oracle
    • More frequent Oracle JDK releases: https://blogs.oracle.com/java/transitioning-java-to-more-frequent-security-updates
    • More Frequent OpenJDK releases: https://mail.openjdk.org/archives/list/jdk-updates-dev@openjdk.org/thread/SVHDNJDY62MX6YBEA4FSMW4U72H77F6S/
    • JDK 27 RC pushed back: https://mail.openjdk.org/archives/list/jdk-dev@openjdk.org/thread/EYKJPUAZ4BX4DXD7H4C5ETWJFNQZBFO5/
    • OpenJDK Mail Search: https://openjdk.barlasgarden.com/
    Show More Show Less
    10 mins
  • "Embracing Virtual Threads with Helidon" [I/O]
    Aug 6 2026

    Helidon 4.4 was released in April 2026 and stands out from other web frameworks by embracing new Java features as early as possible, particularly virtual threads and ahead-of-time computation. It is also aiming to become an OpenJDK project in the coming months.

    In this "Input/Output" episode of the Inside Java Podcast, recorded during JavaOne 2026, Nicolai Parlog talks to Joe Di Pol, Lead Principal Platform Software Engineer at Oracle where he works on Helidon.

    "Input/Output" is our new show, where we talk to people outside of OpenJDK to bring you their perspectives and insights into what's happening in the Java ecosystem.

    Show More Show Less
    14 mins
  • "JIT Compiler From the Ground Up" [AtA]
    Jul 30 2026

    While Java programs are deployed as bytecode, performance-relevant code will be compiled, at run time, to machine code whose performance rivals that of any other platform. In the HotSpot JVM, this is the job of the just-in-time compilers C1 and C2 and between speculation and traps, inlining and constant folding, escape analysis and scalar replacement (and many more), they apply a number of heuristics, analyses, and transformations to achieve that. This requires expertise, careful research, thorough testing, and regular reevaluations of old assumptions.

    In this "Ask the Architects" episode of the Inside Java Podcast, recorded during JavaOne 2026, Nicolai Parlog talks to Roberto Lozano, compiler engineer at the Java Platform Group at Oracle.

    In our show "Ask the Architects", we talk to experts in OpenJDK about their work on the Java language, API, and runtime.

    Show More Show Less
    46 mins
  • "AI Solutions with Spring AI 2.0 and Java" [I/O]
    Jul 23 2026

    Spring AI 2.0 released in June 2026 and is one of several projects ensuring Java's continued strength in enterprise AI development. Here are some tips on deterministic agents, MCP servers and skills, prompt engineering, and where Java's richness for AI solutions stems from.

    In this "Input/Output" episode of the Inside Java Podcast, recorded during JavaOne 2026, Lize Raes talks to Dan Vega, Spring Developer Advocate at Broadcom, Java Champion, speaker, and author.

    "Input/Output" is our new show, where we talk to people outside of OpenJDK to bring you their perspectives and insights into what's happening in the Java ecosystem.

    Show More Show Less
    20 mins
  • "JDK 27 + Valhalla, Now! + Hackathon" [IJN]
    Jul 19 2026

    JDK 27 entered Ramp-Down-Phase 1 in early June, so we can go over its features. Valhalla's first JDK Enhancement Proposal (401) will likely be part of JDK 28. Show off your Java ideas in the "Modern Java in the Wild" hackathon. There are two interesting articles for those who want to dive deeper into AOT with agents or into using GPU tensor cores from Java.

    Links:

    • JDK 27 JEP list: https://openjdk.org/projects/jdk/27/
    • Valhalla mail: https://mail.openjdk.org/archives/list/jdk-dev@openjdk.org/threadAIA3O3LHFZ6T7TIPH7KZT4WS4B6U72U5/
    • JEP 401 PR: https://github.com/openjdk/jdk/pull/31120
    • "Java in the Wild" hackathon: https://www.hackster.io/contests/modern-java-in-the-wild
    • AOT vs agents: https://bugs.openjdk.org/browse/JDK-8387190
    • AOT and JVMTI agents: https://bugs.openjdk.org/browse/JDK-8387194
    • "Exploiting GPU Tensor Cores": https://openjdk.org/projects/babylon/articles/hat-tensors/hat-tensors

    Show More Show Less
    10 mins
  • "Scripting JS and Python with Project Detroit" with Mikael Vidstedt [AtA]
    Jul 9 2026

    OpenJDK recently resurrected Project Detroit, an effort to ease Java's interoperability with Python and JavaScript. Interestingly, while both integrations will work through the _java.scripting_ API, there are still differences between them. On top of that, the JavaScript integration needs to explain how it related to the removal of Nashorn in JDK 16.

    In this "Ask the Architect" episode of the Inside Java Podcast, recorded during JavaOne 2026, Nicolai Parlog talks to Mikael Vidsted, lead of the Java Virtual Machine team at Oracle, about Project Detroit.

    Project Detroit: https://openjdk.org/projects/detroit/

    Show More Show Less
    16 mins
  • "How JEPs Drive Java's Evolution" with Alex Buckley [AtA]
    Jun 25 2026

    JDK Enhancement Proposals are OpenJDK's vehicle for documenting and communicating substantial changes of the Java language, its APIs, and the runtime but also the JDK project itself, for example when it comes to development processes. Their well-defined structure and the immense care that goes into writing them make them eminently readable and understanding them well is essential to understanding Java's development.

    In this "Ask the Architect" episode of the Inside Java Podcast, recorded during JavaOne 2026, Nicolai Parlog talks to Alex Buckley, the Guardian of the JEP process.

    Show More Show Less
    57 mins