<?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 AI Is Rewriting Full-Stack Java Systems: Practical Patterns with Spring Boot, Kafka and WebSockets</title>
      <link>https://dzone.com/articles/how-ai-is-rewriting-full-stack-java-systems-practi</link>
      <description><![CDATA[<p data-end="606" data-start="75">Building real-time applications means balancing user responsiveness with heavy backend processing. A proven solution is to <strong data-end="267" data-start="198">decouple heavy workloads using events and asynchronous processing</strong>. In this approach, a <a href="https://dzone.com/articles/spring-h2-tutorial">Spring Boot application</a> quickly publishes events to Kafka instead of processing requests inline. Then <strong data-end="410" data-start="391">Kafka consumers</strong> (with AI/ML logic) handle the data in the background, and the results are <strong data-end="534" data-start="485">pushed to clients in real time via WebSockets</strong>. This article highlights three key patterns enabling this architecture:</p>
<ol>
 <li data-end="660" data-start="611"><strong data-end="658" data-start="611">Event Production with Spring Boot and Kafka</strong></li>
 <li data-end="709" data-start="664"><strong data-end="707" data-start="664">AI-Driven Processing in Kafka Consumers</strong></li>
 <li data-end="761" data-start="713"><strong data-end="761" data-start="713">Real-Time WebSocket Delivery to the Frontend</strong></li>
</ol>
<h2 data-end="809" data-start="763">Event Production with Spring Boot and Kafka</h2>
<p data-end="1110" data-start="811">The first step is capturing an event and publishing it to Kafka. By offloading work to Kafka the application can respond immediately to the user without waiting for processing. Spring Boot’s integration with Apache Kafka provides a <code data-end="1082" data-start="1067">KafkaTemplate</code> to send messages to topics.</p>]]></description>
      <pubDate>Fri, 08 May 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3640373</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18972871&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>How to Test PUT API Request Using REST-Assured Java</title>
      <link>https://dzone.com/articles/test-put-api-rest-assured-java</link>
      <description><![CDATA[<p data-selectable-paragraph="">PUT requests are typically used for updating an existing resource. This means replacing the current data for the target resource with the data sent in the API request body.</p>
<p data-selectable-paragraph="">Just like POST requests, the content-type header is important because it tells the server how to interpret the data we’re sending.</p>]]></description>
      <pubDate>Thu, 07 May 2026 14:30:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3653332</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19009785&amp;w=600"/>
      <dc:creator>Faisal Khatri</dc:creator>
    </item>
    <item>
      <title>Comparing Top Gen AI Frameworks for Java in 2026</title>
      <link>https://dzone.com/articles/top-genai-java-frameworks</link>
      <description><![CDATA[<p>Java has always been a serious language for production systems, and in 2026, the Generative AI ecosystem has finally caught up. For years, Java developers watched from the sidelines as Python and TypeScript accumulated framework after framework for building LLM-powered applications. Today, the picture is very different. Java has multiple mature, actively maintained AI frameworks, each with its own philosophy and trade-offs.</p>
<p>This article covers the four frameworks I have personally used to ship Java AI applications: <strong>Genkit Java</strong>, <strong>Spring AI</strong>, <strong>LangChain4j</strong>, and <strong>Google ADK Java</strong>. Each one represents a meaningfully different bet on what a Java AI framework should be, and understanding those differences will save you from picking the wrong tool.</p>]]></description>
      <pubDate>Thu, 07 May 2026 12:30:01 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3653228</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=19012055&amp;w=600"/>
      <dc:creator>Xavier Portilla Edo</dc:creator>
    </item>
    <item>
      <title>Java ProcessBuilder: Deadlocks, Zombies, and the 64 KB Wall</title>
      <link>https://dzone.com/articles/java-processbuilder-deadlocks-zombies</link>
      <description><![CDATA[<p>Recently at IBM Software Labs, I worked on a task that forced me to understand something many Java developers rarely think about — how Java interacts with the operating system.</p>
<p>Most of our daily work happens safely inside the <a href="https://dzone.com/articles/jvm-performance-tuning-for-high-throughput-and-low-latency">JVM</a>. Memory management, threads, and file handling — the JVM abstracts these away nicely.</p>]]></description>
      <pubDate>Thu, 30 Apr 2026 17:00:01 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3642039</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18954948&amp;w=600"/>
      <dc:creator>Haider Kagalwala</dc:creator>
    </item>
    <item>
      <title>Java Backend Development in the Era of Kubernetes and Docker</title>
      <link>https://dzone.com/articles/java-backend-kubernetes-docker</link>
      <description><![CDATA[<p>We moved our monolithic Java application to Kubernetes last year. The promise was scalability and resilience. The reality was a series of silent failures during deployments. Users reported dropped connections every time we pushed a new version. Our monitoring showed zero downtime, but the customer experience told a different story. Requests vanished into the void during rolling updates. We spent weeks chasing network ghosts before finding the root cause. The issue was not the network. It was how our Java application handled termination signals.</p>
<p>In this article, I will share how we adapted our Java backend for container orchestration. I will explain the specific lifecycle issues we encountered. I will detail the configuration changes that solved the dropout problem. This is not a guide on writing Dockerfiles. It is a record of the operational friction we faced when Java met Kubernetes. Building cloud-native Java apps requires more than just packaging a JAR. It requires understanding how the orchestration layer interacts with the JVM.</p>]]></description>
      <pubDate>Tue, 28 Apr 2026 16:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641690</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18949999&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>Java in a Container: Efficient Development and Deployment With Docker</title>
      <link>https://dzone.com/articles/java-in-containers-docker</link>
      <description><![CDATA[<p>There is a specific kind of frustration reserved for Java developers who have just containerized their application. You spend hours optimizing your Spring Boot microservice, ensuring your logic is sound and that your tests pass. You wrap it in a Docker container, push it to the registry, and deploy. Then the reality sets in. Your image is 800MB, your startup time is 40 seconds, and during load testing, the container is killed silently by the OS.</p>
<p>In my recent work, migrating a monolithic Java application to a microservices architecture, we faced this exact triad of issues. We were treating <a href="https://dzone.com/articles/getting-started-with-docker-5-easy-steps">Docker containers</a> like lightweight virtual machines and ignoring the nuances of how the JVM interacts with container boundaries. The result was bloated infrastructure costs, slow CI/CD pipelines, and unstable production pods.</p>]]></description>
      <pubDate>Tue, 28 Apr 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641716</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18949979&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>Preventing Prompt Injection by Design: A Structural Approach in Java</title>
      <link>https://dzone.com/articles/preventing-prompt-injection-structural-java</link>
      <description><![CDATA[<h2>The Problem With How We're Sending Data to AI Models</h2>
<p>Most Java applications that integrate with AI models do something like this:</p>
<div class="codeMirror-wrapper" contenteditable="false">
 <div contenteditable="false">
  <div class="codeHeader">
   <div class="nameLanguage">
    Java
   </div><i class="icon-cancel-circled-1 cm-remove">&nbsp;</i>
  </div>
  <div class="codeMirror-code--wrapper" data-code="String userInput = request.getParameter(&quot;topic&quot;);
String prompt = &quot;Summarize the following topic for a financial analyst: &quot; + userInput;" data-lang="text/x-java">
   <pre><code lang="text/x-java">String userInput = request.getParameter("topic");
String prompt = "Summarize the following topic for a financial analyst: " + userInput;</code></pre>
  </div>
 </div>
</div>
<p><br></p>]]></description>
      <pubDate>Fri, 24 Apr 2026 20:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641961</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18944840&amp;w=600"/>
      <dc:creator>suman Baatth</dc:creator>
    </item>
    <item>
      <title>The Invisible OOMKill: Why Your Java Pod Keeps Restarting in Kubernetes</title>
      <link>https://dzone.com/articles/java-pod-oomkill-kubernetes</link>
      <description><![CDATA[<p><span>Imagine deploying a robust Spring Boot microservice that passes every integration test in your local Docker environment, only to watch it crash loop endlessly shortly after launching to your Kubernetes production cluster. Everything ran fine on your laptop, but in the live environment, your pods start terminating en masse. Requests to your critical endpoints begin failing with 503 errors. Panic sets in as your service, the backbone of your transaction pipeline, is effectively brought down by an invisible foe.</span></p>
<p><span>In our recent migration to a cloud-native architecture, the culprit was a hidden memory configuration issue involving how the&nbsp;</span><a href="https://dzone.com/articles/mastering-the-jvm-elevating-java-development"><span>Java Virtual Machine</span></a><span>&nbsp;interacts with Kubernetes container limits. A tiny mismatch in resource allocation, something that went unnoticed during development, led to a chain reaction of OOMKilled events in production.</span></p>]]></description>
      <pubDate>Wed, 22 Apr 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641717</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18941889&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>From APIs to Event-Driven Systems: Modern Java Backend Design</title>
      <link>https://dzone.com/articles/apis-to-event-driven-java-backend</link>
      <description><![CDATA[<p>The outage happened during our biggest sales event of the year. Our order processing system ground to a halt. Customers could add items to their carts, but checkout failed repeatedly. The engineering team scrambled to check the logs. We found a chain of synchronous REST API calls that had collapsed under load. Service A called Service B, which called Service C. When Service C slowed down due to database locks, the latency rippled back up the chain. Service A timed out. Service B timed out. The entire order pipeline froze. We were losing revenue by the minute. This incident forced us to rethink our architecture. We realized that synchronous APIs were not suitable for every interaction. We needed to decouple our services. We needed an event-driven system.</p>
<p>In this article, I will share how we migrated from a tightly coupled API architecture to an event-driven design using Java and Kafka. I will explain the specific challenges we faced during the transition. I will detail the code changes required to handle asynchronous communication. This is not a theoretical discussion about microservices. It is a record of the practical steps we took to stabilize our platform. Building resilient backend systems requires more than just choosing the right tools. It requires understanding the trade-offs between consistency and availability.</p>]]></description>
      <pubDate>Mon, 20 Apr 2026 17:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641689</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18941201&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>Jakarta EE Glossary: The Terms Every Java Engineer Should Actually Understand</title>
      <link>https://dzone.com/articles/jakarta-ee-glossary</link>
      <description><![CDATA[<p>Most developers don’t have a problem writing code. They have a problem understanding the platform they are building on.</p>
<p>And that difference shows up later — in architectural decisions, debugging complexity, vendor lock-in, and, ultimately, career growth.</p>]]></description>
      <pubDate>Mon, 20 Apr 2026 15:30:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3652358</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18990276&amp;w=600"/>
      <dc:creator>Otavio Santana</dc:creator>
    </item>
    <item>
      <title>Training a Neural Network Model With Java and TensorFlow</title>
      <link>https://dzone.com/articles/training-neural-network-java-tensorflow</link>
      <description><![CDATA[<p>Training, exporting, and using a TensorFlow model is a great way to gain a low-level understanding of the building blocks of the LLMs fueling the AI revolution.</p>
<p><span style="background-color: transparent;">Since I am comfortable with using Java, I will use it to define a&nbsp;</span><a href="https://dzone.com/articles/understanding-neural-networks" target="_blank">neural network</a> <span style="background-color: transparent;">(NN) model, train it, export it in a language-agnostic format, and then import it into a Spring Boot project.</span> Now, doing all this from scratch would not be advisable, since there are many advances in the field of NN that would take a long time to properly understand and implementing them would be difficult and error-prone. <span style="background-color: transparent;">So, to both learn about NNs and make implementation easy, we will use a proven software platform:&nbsp;</span><a href="https://dzone.com/articles/how-to-build-a-recommender-system-using-tensorflow" target="_blank">TensorFlow</a><span style="background-color: transparent;">.</span></p>]]></description>
      <pubDate>Fri, 17 Apr 2026 18:00:01 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3616860</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18941156&amp;w=600"/>
      <dc:creator>George Pod</dc:creator>
    </item>
    <item>
      <title>Multithreading in Modern Java: Advanced Benefits and Best Practices</title>
      <link>https://dzone.com/articles/multithreading-in-modern-java-advanced-benefits</link>
      <description><![CDATA[<p data-end="746" data-start="430"><a href="https://dzone.com/articles/virtual-threads-in-jdk-21-revolutionize-java-multithreading">Multithreading</a> has always been one of core strengths of Java over years. From the early days of the JVM, Java was designed with built-in support for concurrent programming. But for many years, writing scalable multithreaded applications required careful tuning, thread pool management and constant attention to synchronization.</p>
<p data-end="1317" data-start="956">In the latest Java versions, the concurrency model has evolved significantly. Modern Java introduces improvements such as <strong data-end="1191" data-start="1078">Virtual Threads, better executors, improved fork-join performance and more structured concurrency approaches</strong>. These features allow developers to build highly concurrent applications with simpler code and fewer scalability limitations.</p>]]></description>
      <pubDate>Fri, 17 Apr 2026 17:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3640648</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18941153&amp;w=600"/>
      <dc:creator>Muhammed Harris Kodavath</dc:creator>
    </item>
    <item>
      <title>Optimizing Java Back-End Performance Profiling and Best Practices</title>
      <link>https://dzone.com/articles/optimizing-java-backend-performance-profiling-best-practices</link>
      <description><![CDATA[<p>The dashboard turned red at weekday. Our order processing API latency jumped from fifty milliseconds to five seconds. Customer support tickets flooded in. Users reported timeouts during checkout. The infrastructure team scaled up the Kubernetes pods, but the issue persisted. CPU usage sat at 100 percent across all nodes. We were throwing hardware at a software problem. This approach failed miserably.&nbsp;</p>
<p>In this article, I will share how we diagnosed the bottleneck. I will explain the profiling tools we used. I will detail the code changes that restored performance. This is not a theoretical guide. It is a record of a real production incident and the steps we took to resolve it.</p>]]></description>
      <pubDate>Thu, 16 Apr 2026 12:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641688</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18935246&amp;w=600"/>
      <dc:creator>Ramya vani Rayala</dc:creator>
    </item>
    <item>
      <title>Faster Releases With DevOps: Java Microservices and Angular UI in CI/CD</title>
      <link>https://dzone.com/articles/devops-ci-cd-java-microservices-angular-ui</link>
      <description><![CDATA[<p data-end="934" data-start="75">In modern DevOps workflows, automating the build-test-deploy cycle is key to accelerating releases for both Java-based microservices and an Angular front end. Tools like Jenkins can detect changes to source code and run pipelines that compile code, execute tests, build artifacts, and deploy them to environments on AWS. A fully automated CI/CD pipeline drastically cuts down manual steps and errors.&nbsp;</p>
<p data-end="934" data-start="75">As one practitioner notes, Jenkins is a powerful CI/CD tool that significantly reduces manual effort and enables faster, more reliable deployments. By treating the entire delivery pipeline as code, teams get repeatable, versioned workflows that kick off on every Git commit via webhooks or polling.</p>]]></description>
      <pubDate>Tue, 14 Apr 2026 13:00:11 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641693</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18934675&amp;w=600"/>
      <dc:creator>Kavitha Thiyagarajan</dc:creator>
    </item>
    <item>
      <title>How to Test a GET API Request Using REST-Assured Java</title>
      <link>https://dzone.com/articles/test-get-api-rest-assured-java</link>
      <description><![CDATA[<p name="c306">Testing GET requests is a fundamental part of API automation, ensuring that endpoints return the expected data and status codes. With REST Assured in Java, sending GET requests with query and path parameters, extracting data, verifying the status code, and validating the response body is quite simple.</p>
<p name="6729">This tutorial walks through practical approaches to efficiently test GET APIs and build reliable automated checks, including:</p>]]></description>
      <pubDate>Mon, 13 Apr 2026 14:30:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3649945</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18981759&amp;w=600"/>
      <dc:creator>Faisal Khatri</dc:creator>
    </item>
    <item>
      <title>Apache Spark 3 to Apache Spark 4 Migration: What Breaks, What Improves, What's Mandatory</title>
      <link>https://dzone.com/articles/apache-spark-3-to-apache-spark-4-migration</link>
      <description><![CDATA[</figcaption></span></span></h2>
<p><a href="https://dzone.com/articles/apache-spark-40-whats-new-for-data-engineers-and-ml-devs">Apache Spark 4.0</a> represents a major evolutionary leap in the big data processing ecosystem. Released in 2025, this version introduces significant enhancements across SQL capabilities, Python integration, connectivity features, and overall performance. However, with great power comes great responsibility — migrating from Spark 3.x to Spark 4.0 requires careful planning due to several breaking changes that can impact your existing workloads.</p>
<p>This comprehensive guide walks you through everything you need to know about the Spark 3 to Spark 4 migration journey. We'll cover what breaks in your existing code, what improvements you can leverage, and what changes are mandatory for a successful transition. Whether you're a data engineer, platform architect, or data scientist, this article provides practical insights to ensure a smooth migration path.</p>]]></description>
      <pubDate>Fri, 10 Apr 2026 20:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3632502</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18932136&amp;w=600"/>
      <dc:creator>Rambabu Bandam</dc:creator>
    </item>
    <item>
      <title>Using Java for Developing Agentic AI Applications: The Enterprise-Ready Stack in 2026</title>
      <link>https://dzone.com/articles/using-java-for-developing-agentic-ai-applications</link>
      <description><![CDATA[<p>As agentic AI shifts from prototypes to enterprise production, Java emerges as a powerful alternative to Python-centric stacks. This article looks into building robust agentic applications using LangChain4j for orchestration, Quarks for high-performance deployment, Model Context Protocol (MCP) for standardized tool and data access, and OpenTelemetry for comprehensive observability. Through practical code examples — including tool definitions, agent creation with memory, RAG integration, and production patterns — the guide demonstrates Java's advantages in type safety, low-latency execution, deep system integration, and audit-ready tracing. This is ideal for developers seeking scalable, reliable agentic solutions in mission-critical environments.</p>
<p><a href="https://dzone.com/articles/future-of-agentic-ai">Agentic AI</a> — autonomous systems that reason, plan, use tools, remember context, and execute complex multi-step tasks — is moving from experimental prototypes to production workloads in enterprises. While Python ecosystems (LangChain, LlamaIndex, CrewAI) led the early wave, <a href="https://dzone.com/articles/the-reason-java-is-still-popular">Java</a> is emerging as a serious contender for mission-critical agentic applications.</p>]]></description>
      <pubDate>Thu, 09 Apr 2026 16:00:05 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3640652</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18929722&amp;w=600"/>
      <dc:creator>Bhaskar Reddy Kollu</dc:creator>
    </item>
    <item>
      <title>Translating OData Queries to MongoDB in Java With Jamolingo</title>
      <link>https://dzone.com/articles/odata-mongodb-query-translator-for-java-app</link>
      <description><![CDATA[<p>Modern APIs often need to support <strong>dynamic filtering, sorting, and pagination</strong> without creating dozens of custom endpoints. One of the most widely used standards for this is <a href="https://docs.oasis-open.org/odata/odata/v4.01/os/part2-url-conventions/odata-v4.01-os-part2-url-conventions.html" rel="noopener noreferrer" target="_blank">OData</a> (Open Data Protocol).<strong>&nbsp;</strong>OData has established itself as a powerful standard for building and consuming RESTful APIs. It provides a uniform way to query and manipulate data, offering clients unparalleled flexibility through system query options like <code>$filter</code>, <code>$select</code>, and <code>$expand</code>.</p>
<p>Example:&nbsp;</p>]]></description>
      <pubDate>Thu, 09 Apr 2026 15:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3639782</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18929718&amp;w=600"/>
      <dc:creator>Szymon Tarnowski</dc:creator>
    </item>
    <item>
      <title>Tracking Dependencies Beyond the Build Stage</title>
      <link>https://dzone.com/articles/tracking-dependencies-beyond-build-stage</link>
      <description><![CDATA[<p>When working on modern software, a developer will often use hundreds or thousands of dependencies. Кeeping an accurate and consistent bill of materials is essential for license compliance and for security.</p>
<h2>Motivation</h2>
<p>In a large organization, the scope of dependencies review given by build-time scanning has some limitations.</p>]]></description>
      <pubDate>Thu, 09 Apr 2026 14:00:00 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3641632</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18930180&amp;w=600"/>
      <dc:creator>Rumen Dimov</dc:creator>
    </item>
    <item>
      <title>Enterprise Java Applications: A Practical Guide to Securing Enterprise Applications with a Risk-Driven Architecture</title>
      <link>https://dzone.com/articles/enterprise-java-applications-risk-driven-architecture</link>
      <description><![CDATA[<p dir="ltr">Enterprise <a href="https://dzone.com/articles/supercharge-your-java-apps-with-ai">Java applications</a> still serve business-critical processes but are becoming vulnerable to changing security threats and regulatory demands. Traditional compliance-based security methods tend to respond to audits or attacks, instead of stopping them. This paper introduces a risk-based security architecture, which focuses on protection according to the impact of the business, the probability of the threat, and exposure. The threat modeling, dependency risk analysis, and layered security controls help organizations to minimize the attack surfaces beforehand without impacting on performance and delivery velocity. The strategy is explained with the help of real-life examples of enterprise Java to facilitate its use in practice.</p>
<h2 dir="ltr"><strong>Intended Audience</strong></h2>
<p dir="ltr">The audience targeted in the article is those an enterprise architect, senior Java developer, security architect, and DevSecOps teams who are required to design, modernize or secure large-scale Java applications. In recent years, there are a number of breaches of enterprises that have not been initiated by a <a href="https://dzone.com/articles/ai-zero-day-threat-hunting">zero-day exploit</a> but a known vulnerability, which has not been prioritized e.g. an outdated library, an open API, or a poorly configured integration In a number of instances, the organizations were technically compliant but still exposed because of the homogenous, checklist-driven security measures that did not concentrate on the high-risk elements.&nbsp;</p>]]></description>
      <pubDate>Wed, 08 Apr 2026 23:00:06 GMT</pubDate>
      <guid isPermaLink="false">https://dzone.com/articles/3638073</guid>
      <media:thumbnail url="https://dz2cdn1.dzone.com/thumbnail?fid=18927628&amp;w=600"/>
      <dc:creator>Sravan Reddy Kathi</dc:creator>
    </item>
  </channel>
</rss>
