<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~files/feed-premium.xsl"?>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedpress="https://feed.press/xmlns" xmlns:podcast="https://podcastindex.org/namespace/1.0" version="2.0">
  <channel>
    <feedpress:locale>en</feedpress:locale>
    <atom:link rel="self" href="https://feeds.dzone.com/java"/>
    <atom:link rel="hub" href="https://feedpress.superfeedr.com/"/>
    <title>DZone Java Zone</title>
    <link>https://dzone.com/java</link>
    <description>Recent posts in Java on DZone.com</description>
    <item>
      <title>How We Cut PyFlink Pipeline p99 Latency from 3-5 Seconds to ~500ms</title>
      <link>https://dzone.com/articles/how-we-got-pyflink-under-half-a-second-of-end-to-e</link>
      <description><![CDATA[<h2 data-sourcepos="5:1-5:40;241-280" dir="ltr">The Problem: Our p99 Was 3-5 Seconds</h2>
<p data-sourcepos="7:1-7:310;282-591" dir="ltr">Our PyFlink pipeline was missing its latency SLO by seconds. The pipeline itself was straightforward: consume events from Kafka, transform them, serialize them as Protobuf, and write the results to downstream systems. Yet under production load, p99 end-to-end latency was consistently in the 3-5 second range.</p>
<p data-sourcepos="9:1-9:364;593-956" dir="ltr">Profiling pointed us to an unexpected bottleneck: we were deserializing Protobuf messages in <a href="https://dzone.com/articles/python-tutorial-for-beginners-a-comprehensive-guid">Python</a>, even though the Flink runtime processing our stream was JVM-based. Every record that entered the Python path had to cross the JVM-to-Python process boundary, get parsed by a Python UDF, and then cross back. The business logic wasn't the problem. The doorway was.</p>]]></description>
      <pubDate>Fri, 07 Aug 2026 16:00:05 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666511</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19120907&amp;w=600"/>
      <dc:creator>Arjun Shah</dc:creator>
    </item>
    <item>
      <title>Orchestration Meets MCP: Building Governed Agentic Workflows With Quarkus Flow and AGENTS.md</title>
      <link>https://dzone.com/articles/quarkus-agentic-workflows</link>
      <description><![CDATA[<p dir="ltr">Building autonomous AI agents with large language models (LLMs) is easy when writing single-turn demo scripts. However, moving multi-agent loops into production introduces serious architectural challenges. Agents hallucinate, loop infinitely without reaching convergence, require human approval for high-risk operations, and need standard tool-calling integrations alongside clear operational governance.</p>
<p dir="ltr">Historically, <a href="https://dzone.com/articles/java-a-time-tested-programming-language-still-goin">Java</a> developers faced a tough choice: either rely on heavyweight, external workflow clusters (like Temporal or Camunda) that add operational overhead, or hand-craft fragile while loops and custom state machines inside their services.</p>]]></description>
      <pubDate>Fri, 07 Aug 2026 15:00:06 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666865</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19123761&amp;w=600"/>
      <dc:creator>Daniel Oh</dc:creator>
    </item>
    <item>
      <title>HTTP QUERY Method Explained: RFC 10008, Ecosystem Adoption, and a Quarkus Implementation</title>
      <link>https://dzone.com/articles/http-query-method-explained</link>
      <description><![CDATA[<p>Then the search form grows, filters multiply, and nested criteria appear. Since using GET means placing the query inside the URI, a length limit problem emerges. Worse, placing sensitive query values in the URI increases the chance of exposure through access logs, browser history, proxies, and monitoring systems. Because the HTTP protocol does not forbid it, sending a body with GET may look like a way out, but building your design on behavior the standards leave undefined is not a recommended practice. Elasticsearch's GET-with-body search API is a well-known example, and <a href="https://www.elastic.co/guide/en/elasticsearch/guide/current/_empty_search.html" rel="noopener noreferrer" target="_blank">Elastic's own documentation</a> openly acknowledges the problem:</p>
<blockquote>
 <p>"As a result,&nbsp;some HTTP servers allow it,&nbsp;and some—especially caching proxies—don't.&nbsp;[...]&nbsp;However,&nbsp;because GET with a request body is not universally supported,&nbsp;the search API also accepts POST requests."</p>]]></description>
      <pubDate>Thu, 06 Aug 2026 17:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3667011</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19118312&amp;w=600"/>
      <dc:creator>Hüseyin Akdoğan</dc:creator>
    </item>
    <item>
      <title>I Built a Java Version Manager by Fixing Other Tools' Open Bugs</title>
      <link>https://dzone.com/articles/java-version-manager</link>
      <description><![CDATA[<p>Every Java developer knows the ritual. A <code data-epitaxy-inline-code="">JAVA_HOME</code> export in one profile file, a different one in another. <code data-epitaxy-inline-code="">sdk use java 21</code> in this terminal, but the other terminal is still on 8. The build passes in your shell and fails in the IDE because the IDE launched from the dock and never sourced your init line. A teammate's "works on my machine" that turns out to mean "works on my shell."</p>
<p>I got tired of it, so I built <a href="https://github.com/OneAppPlatform/jolta" rel="noreferrer" target="_blank">Jolta</a>. It's <a href="https://volta.sh/" rel="noreferrer" target="_blank">Volta</a>, but for <a href="https://dzone.com/articles/java-a-time-tested-programming-language-still-goin">Java</a>. This article is partly about what it does, but mostly about how I built it, because the process is the part I'd recommend to anyone building in a crowded tool category: I mined my competitors' bug trackers and turned their backlogs into my test suite.</p>]]></description>
      <pubDate>Tue, 04 Aug 2026 17:00:05 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666526</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19111470&amp;w=600"/>
      <dc:creator>David Lerner</dc:creator>
    </item>
    <item>
      <title>Rethinking Java Design Patterns: From OOP to FP</title>
      <link>https://dzone.com/articles/rethinking-java-design-patterns</link>
      <description><![CDATA[<p>The functional programming answer, to those who wonder how to integrate or combine it with object-oriented programming, is usually: <em>Turtles all the way down</em>.</p>
<p>This is an aphorism whose origin is credited to Richard Feynman. In his book, <em>Surely You're Joking, Mr. Feynman !</em>, published in 1985, he tells the story of one of his conferences on the nature of the universe, where he was challenged by someone in the audience, saying that the universe rests on a turtle. Feynman asked then what the turtle is resting on, and the answer was: "another bigger turtle".</p>]]></description>
      <pubDate>Tue, 04 Aug 2026 12:00:07 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666595</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19111428&amp;w=600"/>
      <dc:creator>Nicolas Duminil</dc:creator>
    </item>
    <item>
      <title>Arrays in Java</title>
      <link>https://dzone.com/articles/understanding-arrays-in-java</link>
      <description><![CDATA[<p>Arrays in Java are fundamental data structures used to store elements of the same type sequentially in memory. They provide a convenient way to manage collections of data where each element is accessed by its index.</p>
<h2>Basics of Arrays</h2>
<p>An array in Java is a fixed-size container that holds a specific number of elements of the same data type. This means all elements in an array must be of the same type such as integers (<code>int</code>), floating-point numbers (<code>double</code>), characters (<code>char</code>) or objects (<code>Object</code>).</p>]]></description>
      <pubDate>Fri, 31 Jul 2026 19:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3665385</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19104173&amp;w=600"/>
      <dc:creator>Vincenzo Marrazzo</dc:creator>
    </item>
    <item>
      <title>Building a Config-Driven SOAP/REST Integration Layer: One Service, Many Protocols</title>
      <link>https://dzone.com/articles/config-driven-soap-rest-integration</link>
      <description><![CDATA[<p>If you've spent time in enterprise integration, you know the pattern: your platform needs to talk to dozens (sometimes hundreds) of external partner systems, and none of them agree on how they want to be talked to. Some expect SOAP envelopes. Others have moved to REST/JSON. Some want Basic Auth, others OAuth, others a bespoke token scheme. Multiply that by data formats that differ subtly — different XML schemas, different field names, different nesting — and you have a classic integration headache.</p>
<p>Back in 2019, I inherited a service in exactly this position. It was a .NET-based SOAP web service acting as a middleware layer: a caller would hit our service, our service would reach out to a customer's web service, retrieve the data, and hand a response back to the original caller. Request and response payloads were transformed using <a href="https://dzone.com/articles/xslt-mediator-tutorial">XSLT</a>, with a distinct transformation mapped to each customer's expected schema.</p>]]></description>
      <pubDate>Thu, 30 Jul 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664909</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19107822&amp;w=600"/>
      <dc:creator>Balaji Venkatasubramaniyar</dc:creator>
    </item>
    <item>
      <title>This One Spring Data JPA Pattern Cleaned Up to 3 Years of Repository Debt</title>
      <link>https://dzone.com/articles/spring-data-jpa-repository-debt</link>
      <description><![CDATA[<p>If you've spent more than a year building enterprise Java apps, you've probably felt this specific kind of pain: a product manager asks for a new search filter, and you open your repository file to find it already has 18 methods. You write number 19, then 20, and somewhere around method 25 you start wondering if there's a better way.</p>
<p>There is. It's called <a href="https://dzone.com/articles/introduction-spring-data-jpa-inheritance-rest-app">Spring Data JPA Specifications</a>, and it's been sitting quietly in the framework the whole time.</p>]]></description>
      <pubDate>Wed, 29 Jul 2026 18:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3662017</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19106847&amp;w=600"/>
      <dc:creator>Ramesh Bellamkonda</dc:creator>
    </item>
    <item>
      <title>The Java Story: The Official Documentary Is Here</title>
      <link>https://dzone.com/articles/java-official-documentary</link>
      <description><![CDATA[<p>The Java Story | The Official Documentary provides more than a retrospective on one of the most influential programming languages. Tracing Java’s journey from the Oak project at Sun Microsystems to its widespread adoption in enterprise systems, embedded devices, and global platforms, the documentary highlights how technical constraints, strategic decisions, and architectural choices shaped its evolution. For those interested in technology history, it serves as a valuable case study of how software transitions from experimentation to infrastructure, and how early engineering decisions continue to impact modern systems.</p>
<p>The documentary’s significance reaches beyond the Java community. It examines enduring themes in software engineering, including portability, backward compatibility, platform design, ecosystem governance, standardization, and the interplay between technology and community. It also reframes innovation as an ongoing process of adaptation, compromise, and collaboration, rather than a single breakthrough. As such, The Java Story is recommended viewing for anyone interested in how technologies endure, evolve, and become foundational to entire industries.</p>]]></description>
      <pubDate>Wed, 29 Jul 2026 13:00:06 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664446</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19104754&amp;w=600"/>
      <dc:creator>Otavio Santana</dc:creator>
    </item>
    <item>
      <title>How to Build Living AI Coding Assistants With Quarkus Agent MCP</title>
      <link>https://dzone.com/articles/quarkus-ai-coding-assistants-mcp</link>
      <description><![CDATA[<p dir="ltr">AI code generation tools are fantastic at writing isolated snippets of code, but they quickly fall short when they need to understand a running application's state. When a compiled class fails, or a local database container drops, standard AI coding assistants are left guessing. They lack runtime context, environment visibility, and any real-time connection to your active local development workspace.</p>
<p dir="ltr">The <a href="https://dzone.com/articles/intent-driven-integration-with-mcp">Model Context Protocol</a> (MCP) bridges this gap by standardizing how AI applications interact with local tools. By leveraging the standalone <code>quarkus-agent-mcp</code> server, you can turn your local AI coding companion into a "living" pair programmer that can build, configure, and debug your Quarkus applications in real time.</p>]]></description>
      <pubDate>Thu, 23 Jul 2026 18:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664312</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19101234&amp;w=600"/>
      <dc:creator>Daniel Oh</dc:creator>
    </item>
    <item>
      <title>Stop Writing If-Else Spaghetti: Architecting Cleaner Java with the Strategy Pattern</title>
      <link>https://dzone.com/articles/architecting-cleaner-java</link>
      <description><![CDATA[<p>In high-volume, enterprise Java applications, business logic has a natural tendency to degrade into procedural complexity. You start with a straightforward task, such as calculating a discount for a pharmacy claim or evaluating a financial transaction. And before long, the core service method transforms into a multi-hundred-line monolith choked with nested if-else branches and brittle switch statements.</p>
<p>This code smell is more than just an eyesore; it creates significant technical debt. It is exceptionally difficult to unit test, violates fundamental <a href="https://dzone.com/articles/mastering-object-oriented-design-patterns" rel="noopener noreferrer" target="_blank">object-oriented design</a> principles, and introduces severe regression risks where adding a single business rule threatens to break three existing ones.</p>]]></description>
      <pubDate>Thu, 23 Jul 2026 15:00:07 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666099</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19096574&amp;w=600"/>
      <dc:creator>Rahul Tewari</dc:creator>
    </item>
    <item>
      <title>Hardening MCP Gateways: Mitigating July 28 Security Risks in Java Applications</title>
      <link>https://dzone.com/articles/hardening-mcp-gateways</link>
      <description><![CDATA[<p dir="ltr"><a href="https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/">The upcoming release of the July 28 Model Context Protocol (MCP) specification</a> is a massive milestone for AI integration. By shedding the baggage of stateful connections and embracing a streamlined, stateless HTTP paradigm, MCP has finally become enterprise-ready. Developers can now build highly scalable, decentralized AI tool networks that integrate directly with enterprise data.</p>
<p dir="ltr">However, statelessness and flexibility come with a distinct set of trade-offs. The newly introduced capabilities — specifically custom&nbsp;_meta&nbsp;payload objects, dynamic parameter routing, and&nbsp;x-mcp-header&nbsp;mapping — have opened up novel, highly sophisticated attack vectors. If your AI agents can execute code, query databases, or access internal APIs, security cannot be an afterthought.</p>]]></description>
      <pubDate>Tue, 21 Jul 2026 17:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3666252</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19097974&amp;w=600"/>
      <dc:creator>Daniel Oh</dc:creator>
    </item>
    <item>
      <title>Mitigating Cache Stampedes in Dynamic API Translation Using Java 21 Virtual Threads</title>
      <link>https://dzone.com/articles/java-21-cache-stampedes</link>
      <description><![CDATA[<h2 data-path-to-node="8">The Hidden Cost of API Versioning Hell</h2>
<p data-path-to-node="9"><span data-path-to-node="9,0">Continuous API evolution is non-negotiable in contemporary software development, yet maintaining backward compatibility remains an incredibly expensive and labor-intensive hurdle</span><span data-path-to-node="9,2">. Core schema mutations frequently force downstream enterprise clients into disruptive and unplanned refactoring cycles, stalling product velocity</span><span data-path-to-node="9,4">.</span> &nbsp;</p>
<p data-path-to-node="10"><span data-path-to-node="10,0">The typical industry fix — maintaining multiple, hard-coded API routes (e.g., <code data-index-in-node="76" data-path-to-node="10,0">/v1</code>, <code data-index-in-node="81" data-path-to-node="10,0">/v2</code>) — inevitably results in severe codebase sprawl, fractured engineering focus, and massive technical debt for the API provider</span><span data-path-to-node="10,2">.</span> &nbsp;</p>]]></description>
      <pubDate>Fri, 17 Jul 2026 18:00:06 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3654119</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19094542&amp;w=600"/>
      <dc:creator>Aniruddha Chatterjee</dc:creator>
    </item>
    <item>
      <title>AGENTS.md Makes Your Java Codebase AI-Agent Ready</title>
      <link>https://dzone.com/articles/agents-md-java</link>
      <description><![CDATA[<p dir="ltr">The year is 2026, and the way software is built has fundamentally shifted. We are no longer just writing code for other humans to read; we are building systems that AI coding agents, such as Cursor, GitHub Copilot Agent Mode, Claude Code, and autonomous CLI tools, will navigate, debug, and extend.</p>
<p dir="ltr">As Java developers, we are blessed with robust tooling. If you are using <a href="https://dzone.com/refcardz/quarkus-1" rel="noopener noreferrer" target="_blank">Quarkus</a>, you already possess a superpower: Supersonic Subatomic Java with an ultra-fast developer loop, continuous testing, and built-in Dev Services.</p>]]></description>
      <pubDate>Fri, 17 Jul 2026 16:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664219</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19093620&amp;w=600"/>
      <dc:creator>Daniel Oh</dc:creator>
    </item>
    <item>
      <title>Going Stateless: Scaling MCP Servers to Cloud-Native Java and HTTP</title>
      <link>https://dzone.com/articles/stateless-mcp-servers</link>
      <description><![CDATA[<p dir="ltr">The Model Context Protocol (MCP) completely changed how we connect large language models to real-world data and tools. However, early versions of the protocol had a massive bottleneck for enterprise developers: they relied heavily on stateful, long-lived sessions. If you wanted to scale out your AI tools to handle thousands of concurrent agent workflows, you had to deal with sticky sessions, complex load balancing, and heavy memory overhead.</p>
<p dir="ltr">The <a href="https://blog.modelcontextprotocol.io/posts/2026-07-28-release-candidate/" rel="noopener noreferrer" target="_blank">newest updates to the MCP specification</a> solve this problem by introducing a completely stateless HTTP foundation. By removing the traditional initialization handshake and session IDs, MCP servers can now function as lightweight, independent microservices.</p>]]></description>
      <pubDate>Thu, 16 Jul 2026 18:00:05 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664181</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19091506&amp;w=600"/>
      <dc:creator>Daniel Oh</dc:creator>
    </item>
    <item>
      <title>Compliance Reporting Without Losing the Spreadsheet or the Control</title>
      <link>https://dzone.com/articles/compliance-reporting-control</link>
      <description><![CDATA[<p dir="ltr">Compliance-reporting teams keep spreadsheets in the loop for a practical reason: a workbook lets domain experts inspect assumptions, formulas, source rows, and intermediate values without reading a line of application code. That transparency is genuinely useful, and it's a big part of why replacing Excel outright so often fails to stick.</p>
<p dir="ltr">The trouble starts once that workbook becomes part of a repeatable, audited reporting process — a regulatory filing, an IFRS report, a periodic compliance submission. At that point, a shared Excel file isn't enough on its own. What's actually needed is version control, validation, an audit trail, a review step, and a reliable way to connect the spreadsheet's logic to the systems downstream.</p>]]></description>
      <pubDate>Tue, 14 Jul 2026 17:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3665047</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19087555&amp;w=600"/>
      <dc:creator>Hawk Chen</dc:creator>
    </item>
    <item>
      <title>Differential Flamegraphs in Java in Jeffrey Microscope</title>
      <link>https://dzone.com/articles/java-differential-flamegraphs</link>
      <description><![CDATA[<p>In the <a href="https://dzone.com/articles/jeffrey-java-flame-graphs" rel="noreferrer" target="_blank">first article</a>, we got started with Jeffrey Microscope and learned to read a single flamegraph — the timeseries, search, tooltips, and the allocation and wall-clock variants. This time we build directly on that foundation and tackle one of Jeffrey's most powerful features for real-world performance work: the <strong>differential flamegraph</strong>, which compares two recordings and shows you precisely what changed between them.</p>
<p>A single flamegraph tells you where your application spends its time. But the questions that matter most in practice are comparative:</p>]]></description>
      <pubDate>Tue, 14 Jul 2026 12:00:10 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3665955</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19088888&amp;w=600"/>
      <dc:creator>Petr Bouda</dc:creator>
    </item>
    <item>
      <title>Jeffrey Microscope for Generating Flame Graphs in Java</title>
      <link>https://dzone.com/articles/jeffrey-java-flame-graphs</link>
      <description><![CDATA[<p>Java Flight Recorder (JFR) captures an enormous amount of detail about what your application is doing — but raw JFR files are only as useful as the tools you have to explore them. Jeffrey is an open-source JFR analyzer that specializes in turning JFR events into interactive visualizations, and Jeffrey Microscope is its standalone, single-user deployment: a self-contained application that lets you import recordings and dig into flamegraphs, timeseries, and other views right in your browser. Getting started takes a minute:</p>
<ul>
 <li><strong>Standalone JAR</strong> – download the latest <code data-epitaxy-inline-code="">microscope.jar</code> from the GitHub releases page and start it with <code data-epitaxy-inline-code="">java -jar microscope.jar</code> (Java 25 or newer).</li>
 <li><strong>Docker</strong> – skip the setup entirely with <code data-epitaxy-inline-code="">docker run -it --network host petrbouda/microscope</code>.</li>
 <li><strong>Sample recordings</strong> – if you want to explore the tool before profiling your own application, the <code data-epitaxy-inline-code="">petrbouda/microscope-examples</code> image ships with sample recordings preloaded (<code data-epitaxy-inline-code="">docker run -it --network host petrbouda/microscope-examples</code>).</li>
</ul>
<p>In this article, we'll use Jeffrey Microscope to analyze JFR flamegraphs and walk through how they help you find where your application actually spends its time.</p>]]></description>
      <pubDate>Mon, 13 Jul 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3664942</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19088840&amp;w=600"/>
      <dc:creator>Petr Bouda</dc:creator>
    </item>
    <item>
      <title>Your Codename One App, Now A Native Mac App</title>
      <link>https://dzone.com/articles/native-mac-apps-codename-one</link>
      <description><![CDATA[<p>Codename One has run on the desktop for a long time through the JavaSE target, which is the same engine that powers the simulator. What it did not have was a <strong>real</strong> native Mac binary, and the desktop output still carried a lot of phone-shaped habits: a drawn toolbar where the OS menu bar belongs, scrollbars you could not grab, no place in the menu for Preferences or Quit. With version 7.0.250, we finally have an actual native macOS application target that doesn't bundle a JVM and is as native as our iOS target.</p>
<h2>A Native Mac Build From the iOS Pipeline</h2>
<p><a href="https://github.com/codenameone/CodenameOne/pull/5053">PR #5053</a> adds a <code>Mac Native</code> target that takes the existing project through the same build as the iPhone builder and the ParparVM pipeline that produces an iOS app. In this case, it emits a native Mac variant of it.</p>]]></description>
      <pubDate>Fri, 10 Jul 2026 16:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3659757</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19084139&amp;w=600"/>
      <dc:creator>Shai Almog</dc:creator>
    </item>
    <item>
      <title>Exploring A Few Java 25 Language Enhancements</title>
      <link>https://dzone.com/articles/java-25-language-enhancements</link>
      <description><![CDATA[<p>Although Java 26 was released in mid-March this year, Java 25 is the latest LTS version available, and thus I chose to focus my attention on it in the first place.</p>
<p>Irrespective of whether certain Java 25 language improvements are still available as preview features or not, this article briefly outlines a few. The main purpose is to first make the developers aware that Java is continuously refined and evolved by its API contributors and secondly, to raise the curiosity and interest of exploring these enhancements in detail.</p>]]></description>
      <pubDate>Fri, 10 Jul 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3642504</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19084116&amp;w=600"/>
      <dc:creator>Horatiu Dan</dc:creator>
    </item>
  </channel>
</rss>
