<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Home on Jakarta® EE: The New Home of Cloud Native Java</title>
    <link>https://jakarta.ee/</link>
    <description>Recent content in Home on Jakarta® EE: The New Home of Cloud Native Java</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <managingEditor>webdev@eclipse-foundation.org (Eclipse Foundation)</managingEditor>
    <webMaster>webdev@eclipse-foundation.org (Eclipse Foundation)</webMaster><atom:link href="https://jakarta.ee/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to Build a RESTful Web Service Using Jakarta EE</title>
      <link>https://jakarta.ee/learn/starter-guides/how-to-build-a-restful-web-service/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/starter-guides/how-to-build-a-restful-web-service/</guid>
      <description>&lt;p&gt;This guide shows you how to use Jakarta EE to make a
&lt;a href=&#34;https://jakarta.ee/specifications/restful-ws/&#34;&gt;RESTful web service&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To create a RESTful web service using &lt;a href=&#34;https://jakarta.ee/&#34;&gt;Jakarta EE&lt;/a&gt;, we will begin by
summarizing what we want to build.&lt;/p&gt;
&lt;p&gt;We will build a service that will accept an HTTP GET&lt;sup&gt;&lt;a href=&#34;#footnote-1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;

request at &lt;!-- raw HTML omitted --&gt;http://localhost:8080/restfulservice/hello&lt;!-- raw HTML omitted --&gt;.&lt;/p&gt;
&lt;p&gt;It will respond with the following JSON payload, as the following listing
shows:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;&amp;#34;text&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Hello from Jakarta EE&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;We can then further customize and improve it according to our needs.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Getting Started with Jakarta EE: A Comprehensive Beginner&#39;s Guide to the Get Started</title>
      <link>https://jakarta.ee/learn/starter-guides/a-comprehensive-beginners-guide-to-the-get-started/</link>
      <pubDate>Tue, 21 Oct 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/starter-guides/a-comprehensive-beginners-guide-to-the-get-started/</guid>
      <description>&lt;p&gt;As a new Java developer or a student preparing for a career in enterprise
software, understanding Jakarta EE is essential. Evolving from Java EE, it
provides a reliable platform with APIs for building scalable, secure, and
portable applications. Jakarta EE is used across industries such as banking,
e-commerce, healthcare, and government.&lt;/p&gt;
&lt;h2 id=&#34;what-is-jakarta-ee-and-why-it-matters&#34;&gt;What is Jakarta EE and Why It Matters&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://jakarta.ee/&#34;&gt;Jakarta EE&lt;/a&gt; is a set of specifications used for building
Java products and frameworks for building large-scale enterprise applications.
It powers systems like banks, e-commerce sites, and corporate platforms. It
builds on Java SE with additional APIs for web development, database access,
messaging, and security. If your goal is to create production-grade Java
applications, Jakarta EE provides the tools and standards to get there.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to Secure a RESTful Web Service Using Jakarta EE</title>
      <link>https://jakarta.ee/learn/starter-guides/how-to-secure-a-restful-web-service/</link>
      <pubDate>Fri, 29 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/starter-guides/how-to-secure-a-restful-web-service/</guid>
      <description>&lt;p&gt;This guide shows you how to secure a rest endpoint using
&lt;a href=&#34;https://jakarta.ee/specifications/authentication/&#34;&gt;Jakarta Authentication&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As we delve into securing RESTful web services, let&amp;rsquo;s first define a basic
scenario that we will be working with throughout this article.&lt;/p&gt;
&lt;p&gt;We are constructing a service that will accept an HTTP GET request at
&lt;!-- raw HTML omitted --&gt;http://localhost:8080/jakartaee-hello-world/rest/hello&lt;!-- raw HTML omitted --&gt;. In
response to this request, our service will return a JSON payload, as shown in
the following example:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to store and retrieve data using Jakarta Persistence of Jakarta EE</title>
      <link>https://jakarta.ee/learn/starter-guides/how-to-store-and-retrieve-data-using-jakarta-persistence/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/starter-guides/how-to-store-and-retrieve-data-using-jakarta-persistence/</guid>
      <description>&lt;p&gt;This guide shows you how to store and retrieve data using
&lt;a href=&#34;https://jakarta.ee/specifications/persistence/&#34;&gt;Jakarta Persistence&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We will first begin by summarizing what we want to build. Next, we build a
&lt;a href=&#34;https://jakarta.ee/specifications/restful-ws/&#34;&gt;RESTful web service&lt;/a&gt; that can consume data, store
it in a database using Jakarta Persistence, and serve it as a REST endpoint.
For those unfamiliar with RESTful web services, we recommend reading our
&lt;a href=&#34;../how-to-build-a-restful-web-service/&#34;&gt;previous article&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We will build an application that handles coffee product data. The service will
consume a JSON payload containing the product&amp;rsquo;s ID, name, and price. Here&amp;rsquo;s an
example of the JSON payload:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Skillwell Simulate</title>
      <link>https://jakarta.ee/case-studies/skillwell/</link>
      <pubDate>Thu, 16 Jul 2026 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/case-studies/skillwell/</guid>
      <description>&lt;h2 id=&#34;executive-summary&#34;&gt;Executive summary&lt;/h2&gt;
&lt;p&gt;The ETU Platform (marketed as Skillwell Simulate) is a market-leading learning simulation platform designed to deliver scalable, immersive experiences that drive real behaviour change while maintaining enterprise-grade reliability and integration. It enables organisations to rapidly create, deliver, and scale interactive simulations, while capturing rich performance data and actionable insights.&lt;/p&gt;
&lt;p&gt;Built on &lt;a href=&#34;https://jakarta.ee/&#34;&gt;Jakarta EE&lt;/a&gt;, the platform provides a robust and scalable foundation with seamless integration across enterprise systems and cloud services, including AI capabilities. The result is a future-ready solution that enhances engagement, accelerates skill development, and delivers measurable impact at scale.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE User Group Logo Usage Policy</title>
      <link>https://jakarta.ee/legal/user-group-logo-policy/</link>
      <pubDate>Mon, 15 Jun 2026 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/legal/user-group-logo-policy/</guid>
      <description>&lt;p&gt;&lt;em&gt;Effective as of June 15, 2026&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The Eclipse Foundation welcomes and encourages the growth of independent Jakarta EE user groups worldwide. To support these community efforts, the Eclipse Foundation permits use of the official Jakarta EE User Group logo in accordance with this policy, the Eclipse Foundation Trademark Usage Policy, and the &lt;a href=&#34;https://jakarta.ee/legal/trademark_guidelines/&#34;&gt;Jakarta EE Trademark Guidelines&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;1-permitted-use&#34;&gt;1. Permitted Use&lt;/h2&gt;
&lt;p&gt;You are encouraged to use the Jakarta EE User Group logo on your group&amp;rsquo;s website, event pages, social media channels and slides to identify your group as part of the Jakarta EE community.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/jsonb/3.0/changelog/</link>
      <pubDate>Fri, 29 May 2026 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/jsonb/3.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Jakarta EE TCK Process 1.4.2</title>
      <link>https://jakarta.ee/committees/specification/tckprocess/</link>
      <pubDate>Wed, 15 Apr 2026 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/specification/tckprocess/</guid>
      <description>&lt;p&gt;Specification Projects under the Eclipse Foundation Specification
Process MUST produce a Technology Compatibility Kit (TCK) that delivers
on the promise of enabling multiple compatible implementations.&lt;/p&gt;
&lt;p&gt;This document defines:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Materials a TCK MUST possess to be considered suitable for
delivering portability&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ratifying a Final TCK&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Process for challenging tests and how these challenges are resolved&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Means of excluding released TCK tests from certification
requirements&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Policy on improving TCK tests for released specifications&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE 12</title>
      <link>https://jakarta.ee/release/12/</link>
      <pubDate>Thu, 26 Feb 2026 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/release/12/</guid>
      <description>&lt;section class=&#34;row text-primary padding-bottom-large&#34;&gt;
  &lt;div class=&#34;col-md-24 margin-bottom-60&#34;&gt;
    &lt;div class=&#34;max-w-50 margin-x-auto text-center&#34;&gt;
      &lt;p&gt;
        Jakarta EE 12 focuses on
        &lt;strong&gt;robust and flexible enterprise Java&lt;/strong&gt;, supporting
        reliable applications while enabling modularity, interoperability, and
        architectural choice.
      &lt;/p&gt;
      &lt;p&gt;
        This page will be updated regularly to reflect new proposals,
        milestones, and specification work as they become available.
      &lt;/p&gt;
    &lt;/div&gt;
  &lt;/div&gt;
  &lt;div class=&#34;col-md-24&#34;&gt;
    
    
    &lt;div class=&#34;jakarta-ee-platform-diagram&#34;&gt;
      &lt;h3 class=&#34;platform-title&#34;&gt;Jakarta EE 12 Platform&lt;/h3&gt;&lt;div class=&#34;platform-frame&#34;&gt;
        &lt;div class=&#34;platform-frame-row&#34; style=&#34;--spec-cols: 1; --frame-cols: 3; --depth: 1; --grids: 1;&#34;&gt;&lt;div class=&#34;platform-frame-specs&#34;&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/nosql/1.1/&#34;
          class=&#34;spec-box bg-primary-orange&#34;
          aria-label=&#34;NoSQL 1.1*&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;NoSQL 1.1*&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/authorization/3.0/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Authorization 3.0&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Authorization 3.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/activation/2.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Activation 2.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Activation 2.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/batch/2.2/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Batch 2.2&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Batch 2.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/connectors/2.2/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Connectors 2.2&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Connectors 2.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/mail/2.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Mail 2.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Mail 2.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/messaging/3.1/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Messaging 3.1&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Messaging 3.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/enterprise-beans/4.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Enterprise Beans 4.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Enterprise Beans 4.1&lt;/span&gt;
        &lt;/a&gt;&lt;/div&gt;&lt;div class=&#34;platform-frame&#34;&gt;&lt;h4 class=&#34;column-title&#34;&gt;Jakarta EE 12 &lt;strong&gt;Web Profile&lt;/strong&gt;&lt;/h4&gt;&lt;div class=&#34;platform-frame-row&#34; style=&#34;--spec-cols: 2; --frame-cols: 1; --depth: 0; --grids: 0;&#34;&gt;
          &lt;div class=&#34;platform-frame-specs spec-grid&#34;&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/query/1.0/&#34;
          class=&#34;spec-box bg-primary-orange&#34;
          aria-label=&#34;Query 1.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Query 1.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/authentication/3.1/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Authentication 3.1**&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Authentication 3.1**&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/data/1.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Data 1.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Data 1.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/concurrency/3.2/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Concurrency 3.2&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Concurrency 3.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/persistence/4.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Persistence 4.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Persistence 4.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/cdi/5.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;CDI 5.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;CDI 5.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/pages/4.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Pages 4.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Pages 4.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/expression-language/6.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Expression Language 6.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Expression Language 6.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/websocket/2.3/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;WebSocket 2.3&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;WebSocket 2.3&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/faces/5.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Faces 5.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Faces 5.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/bean-validation/4.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Validation 4.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Validation 4.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/security/5.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Security 5.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Security 5.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/debugging/2.0/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Debugging Support 2.0&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Debugging Support 2.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/servlet/6.2/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Servlet 6.2&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Servlet 6.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/enterprise-beans/4.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Enterprise Beans Lite 4.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Enterprise Beans Lite 4.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/tags/3.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Standard Tag Library 3.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Standard Tag Library 3.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/transactions/2.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Transactions 2.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Transactions 2.1&lt;/span&gt;
        &lt;/a&gt;&lt;/div&gt;&lt;div class=&#34;platform-frame&#34;&gt;&lt;h4 class=&#34;column-title&#34;&gt;Jakarta EE 12 &lt;strong&gt;Core Profile&lt;/strong&gt;&lt;/h4&gt;&lt;div class=&#34;platform-frame-row&#34;&gt;
          &lt;div class=&#34;platform-frame-specs&#34;&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/restful-ws/5.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;RESTful Web Services 5.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;RESTful Web Services 5.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/jsonp/2.2/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;JSON Processing 2.2&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;JSON Processing 2.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/jsonb/3.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;JSON Binding 3.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;JSON Binding 3.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/annotations/3.1/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;Annotations 3.1&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;Annotations 3.1&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/interceptors/2.2/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Interceptors 2.2&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Interceptors 2.2&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/dependency-injection/2.0/&#34;
          class=&#34;spec-box bg-blue-ish-grey&#34;
          aria-label=&#34;Dependency Injection 2.0&#34;
        &gt;
          &lt;span class=&#34;text-black&#34;&gt;Dependency Injection 2.0&lt;/span&gt;
        &lt;/a&gt;&lt;a
          href=&#34;https://jakarta.ee/specifications/cdi/5.0/&#34;
          class=&#34;spec-box bg-primary-dark-purple&#34;
          aria-label=&#34;CDI Lite 5.0&#34;
        &gt;
          &lt;span class=&#34;text-white&#34;&gt;CDI Lite 5.0&lt;/span&gt;
        &lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
      &lt;/div&gt;&lt;/div&gt;
      &lt;/div&gt;&lt;/div&gt;
      &lt;/div&gt;
    
      &lt;div class=&#34;platform-legend-footnotes-row&#34;&gt;
        &lt;div class=&#34;platform-legend&#34;&gt;&lt;div class=&#34;legend-item&#34;&gt;
              &lt;span class=&#34;legend-dot bg-primary-dark-purple&#34;&gt;&lt;/span&gt;
              &lt;span&gt;Updated&lt;/span&gt;
            &lt;/div&gt;&lt;div class=&#34;legend-item&#34;&gt;
              &lt;span class=&#34;legend-dot bg-blue-ish-grey&#34;&gt;&lt;/span&gt;
              &lt;span&gt;Not Updated&lt;/span&gt;
            &lt;/div&gt;&lt;div class=&#34;legend-item&#34;&gt;
              &lt;span class=&#34;legend-dot bg-primary-orange&#34;&gt;&lt;/span&gt;
              &lt;span&gt;New&lt;/span&gt;
            &lt;/div&gt;&lt;/div&gt;&lt;div class=&#34;platform-footnotes&#34;&gt;&lt;p class=&#34;platform-footnote&#34;&gt;* Candidate for inclusion.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>10 ways to accelerate your career with Jakarta EE</title>
      <link>https://jakarta.ee/news/2025/11/10/10-ways-to-accelerate-your-career-with-jakarta-ee/</link>
      <pubDate>Mon, 10 Nov 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/news/2025/11/10/10-ways-to-accelerate-your-career-with-jakarta-ee/</guid>
      <description>This article explores ten reasons to get involved in open source, highlighting how contributions to the Java standards for enterprise applications, Jakarta EE, can help you grow professionally while shaping the future of the software industry.</description>
    </item>
    
    <item>
      <title>What&#39;s Up with Open Standard Enterprise Java and AI?</title>
      <link>https://jakarta.ee/blogs/open-standard-enterprise-java-and-ai/</link>
      <pubDate>Thu, 02 Oct 2025 12:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/blogs/open-standard-enterprise-java-and-ai/</guid>
      <description>Enterprise Java has always been about standards—about providing a foundation that&amp;rsquo;s stable, interoperable, and vendor-neutral. If you&amp;rsquo;ve been around since the days of Servlets, EJBs, and JPA, you know that Jakarta EE&amp;rsquo;s approach is to standardize what&amp;rsquo;s proven, not chase every shiny new thing. That&amp;rsquo;s why mission-critical systems still rely on Jakarta EE&amp;rsquo;s backbone, and why customers look to the platform for direction and leadership. The Eclipse Foundation&amp;rsquo;s stewardship and open process help to reinforce this.</description>
    </item>
    
    <item>
      <title>Beyond the Hype: 10 Reasons Jakarta EE is Still the Smartest Choice</title>
      <link>https://jakarta.ee/news/2025/07/31/beyond-the-hype-10-reasons-jakarta-ee-is-still-the-smartest-choice/</link>
      <pubDate>Thu, 31 Jul 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/news/2025/07/31/beyond-the-hype-10-reasons-jakarta-ee-is-still-the-smartest-choice/</guid>
      <description>In this article, I will talk about why Jakarta EE is the best technology investment for you as a Software Architect, C-level, and Senior Engineer as well.</description>
    </item>
    
    <item>
      <title>Jakarta NoSQL and Jakarta Persistence Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/nosql-and-persistence-explained/</link>
      <pubDate>Tue, 29 Apr 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/nosql-and-persistence-explained/</guid>
      <description>&lt;h2 id=&#34;abstract&#34;&gt;Abstract&lt;/h2&gt;
&lt;p&gt;The Jakarta EE ecosystem offers specifications for building database backend
applications using relational and/or NoSQL databases. The Jakarta Persistence
specification, with a rich history dating back almost 20 years, has been a
staple in the Java community for writing relational database applications. The
Jakarta NoSQL specification, with a short history dating back to 2020, provides
comprehensive support for all four types of NoSQL databases.&lt;/p&gt;
&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;
&lt;p&gt;The Jakarta EE ecosystem offers specifications for building database backend
applications using relational and/or NoSQL databases. The &lt;a href=&#34;https://jakarta.ee/specifications/persistence/&#34;&gt;Jakarta Persistence&lt;/a&gt;
specification, with a rich history dating back almost 20 years, has been a
staple in the Java community for writing relational database applications. The
&lt;a href=&#34;https://jakarta.ee/specifications/nosql/&#34;&gt;Jakarta NoSQL&lt;/a&gt; specification, with a short history
dating back to 2020, provides comprehensive support for all four types of NoSQL
databases.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta NoSQL 1.0 Final Released: Bridging Java and NoSQL with Standards</title>
      <link>https://jakarta.ee/blogs/jakarta-nosql-1-0/</link>
      <pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/blogs/jakarta-nosql-1-0/</guid>
      <description>&lt;p&gt;We’re thrilled to announce the &lt;strong&gt;final release of Jakarta NoSQL 1.0&lt;/strong&gt;, a brand-new specification designed to bring standardization, productivity, and portability to NoSQL integration in the Java ecosystem.&lt;/p&gt;
&lt;p&gt;This release marks a significant step in the Jakarta EE platform by introducing the &lt;strong&gt;first-ever NoSQL specification&lt;/strong&gt;. Whether you’re working with document, key-value, column, or graph databases, Jakarta NoSQL is built to streamline your development experience.&lt;/p&gt;
&lt;h2 id=&#34;why-jakarta-nosql&#34;&gt;Why Jakarta NoSQL?&lt;/h2&gt;
&lt;p&gt;Jakarta NoSQL was created to make it easier and more productive for developers to work with NoSQL databases while staying fully within the Jakarta EE programming model. It brings:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Key Takeaways from the Cloud Native Java Survey</title>
      <link>https://jakarta.ee/blogs/key-takeaways-cloud-native-java-survey/</link>
      <pubDate>Thu, 27 Feb 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://jakarta.ee/blogs/key-takeaways-cloud-native-java-survey/</guid>
      <description>&lt;p&gt;The &lt;strong&gt;Jakarta EE Working Group&lt;/strong&gt; conducted the first-ever &lt;strong&gt;Cloud Native Java
Survey&lt;/strong&gt; between July 11, 2024 and August 23, 2024 to gather insights on
popular Java SE versions, Jakarta EE, and MicroProfile usage. The results from
over 170 respondents left us with a number of important takeaways about the
adoption of enterprise Java technologies, developer priorities, and more. Here
are the key findings.&lt;/p&gt;
&lt;h2 id=&#34;java-eejakarta-ee-adoption&#34;&gt;Java EE/Jakarta EE Adoption&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Jakarta EE 8 &amp;amp; Java EE 8&lt;/strong&gt; remain the most widely used versions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jakarta EE 10&lt;/strong&gt; adoption is growing as developers skip EE 9/9.1, which were
transitional.&lt;/li&gt;
&lt;li&gt;A notable portion still relies on &lt;strong&gt;legacy Java EE versions&lt;/strong&gt; (e.g., EE 6,
released 15 years ago).&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/jakarta-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of Jakarta EE and Java EE and their popularity as a percentage. Jakarta EE 10 with 52%; Java EE 8 with 34%; Jakarta EE 8 with 22%; Don&amp;#39;t use with 18%; Jakarta EE 9.x with 14%; Java EE 6 with 13%; Java EE 7 with 10%; Older than Java EE 6 with 10%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;microprofile-adoption&#34;&gt;MicroProfile Adoption&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;A majority &lt;strong&gt;do not use MicroProfile&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Those who do mostly run &lt;strong&gt;newer versions&lt;/strong&gt; (MicroProfile 6 aligns with
Jakarta EE 10).&lt;/li&gt;
&lt;li&gt;Some developers remain on &lt;strong&gt;older MicroProfile releases&lt;/strong&gt;, indicating slow
migration.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/microprofile-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of MicroProfile and their popularity as a percentage. Don&amp;#39;t use with 50%; MicroProfile 6.x with 35%; MicroProfile 5.x with 19%; MicroProfile 4.x with 12%; MicroProfile 3.x with 11%; MicroProfile 1.x with 6%; MicroProfile 2.x with 4%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;java-se-versions&#34;&gt;Java SE Versions&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Java SE 17&lt;/strong&gt; is the most used version.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Almost half&lt;/strong&gt; of developers are already on &lt;strong&gt;Java SE 21&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Java SE 8 and 11&lt;/strong&gt; still have significant usage, despite being outdated.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-16 col-sm-offset-4&#34; src=&#34;./images/java-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of Java SE and their popularity as a percentage. Java SE 17 with 58%; Java SE 21 with 48%; Java SE 11 with 38%; Java SE 8 with 37%; Java SE 22 with 13%; Java SE 7 or older with 10%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;popular-java-runtimes&#34;&gt;Popular Java Runtimes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Spring Boot, Tomcat, Quarkus, and WildFly&lt;/strong&gt; dominate the landscape.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GlassFish, JBoss EAP, Payara, and Open Liberty&lt;/strong&gt; also have strong adoption.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jetty, TomEE, and WebSphere&lt;/strong&gt; hold niche market shares.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Helidon and some Asian runtimes&lt;/strong&gt; have limited traction (~5% adoption).&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-java-runtimes.png&#34;
         alt=&#34;A pie chart displaying popular Java Runtimes. Spring Boot with 38%; Tomcat with 33%; Quarkus with 32%; WildFly with 31%; GlassFish with 20%; JBoss EAP with 18%; Payara with 18%; Liberty with 16%; Jetty with 14%; TomEE with 14%; WebSphere with 13%, WebLogic with 13%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;popular-jakarta-ee-apis&#34;&gt;Popular Jakarta EE APIs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Jakarta REST (JAX-RS), CDI, and JPA&lt;/strong&gt; are the most widely used.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSON, Servlet, and EJB&lt;/strong&gt; also see strong adoption.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSF, JSP, and JMS usage is declining&lt;/strong&gt; as JavaScript frameworks and alternative
messaging solutions gain traction.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-jakarta-apis.png&#34;
         alt=&#34;A horizontal bar chart where the y-axis is the Jakarta EE API and the x-axis represents the usage as a percentage. The first group is as follows: REST with 70%, CDI with 68%, Persistence with 66%. The second group is as follows: JSON Binding with 58%, Servlet with 57%, JSON Processing with 53%, Validation with 53%, Enterprise Beans with 52%. The third group is as follows: Transactions with 49%, Mail with 48%, Faces with 44%, Messaging with 42%, Security with 40%, Expression Language with 38%. The fourth group is as follows: SOAP with 34%, Concurrency with 33%, WebSocket with 28%, Batch with 21%, Pages with 21%, Connectors with 19%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;microprofile-apis&#34;&gt;MicroProfile APIs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Config, OpenAPI, and REST Client&lt;/strong&gt; lead usage.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Health, Metrics, and JWT&lt;/strong&gt; are commonly used for cloud native applications.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GraphQL, OpenTracing, and Reactive Messaging&lt;/strong&gt; see limited adoption.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-microprofile-apis.png&#34;
         alt=&#34;A horizontal bar chart where the y-axis is the MicroProfile API and the x-axis represents the usage as a percentage. The first group is as follows: Config with 49%, OpenAPI with 44%, Rest Client with 41%. The second group is as follows: Health with 38%, Metrics with 36%, JWT with 34%. The third group is as follows: Telemetry with 28%, Fault Tolerance with 27%. The fourth group is as follows: OpenTracing with 19%, Reactive Messaging with 19%, Context Propagation with 18%, GraphQL with 13%, LRA with 8%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;developer-priorities-for-jakarta-ee--microprofile&#34;&gt;Developer Priorities for Jakarta EE &amp;amp; MicroProfile&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Adapting to Java SE innovations&lt;/strong&gt; (e.g., Virtual Threads, Project CRaC, Project Leyden).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Enhanced Kubernetes support&lt;/strong&gt; (e.g., integration with Kubernetes Secrets).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deprecating legacy features&lt;/strong&gt; like EJB, favoring &lt;strong&gt;CDI-based alternatives&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New features&lt;/strong&gt;, including:
&lt;ul&gt;
&lt;li&gt;Jakarta Messaging Lite for modern cloud use cases.&lt;/li&gt;
&lt;li&gt;CDI-based replacements for EJB &lt;strong&gt;Message-Driven Beans, &lt;code&gt;@Schedule&lt;/code&gt;, and &lt;code&gt;@RolesAllowed&lt;/code&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;A standard API for &lt;strong&gt;server management&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;other-key-insights&#34;&gt;Other Key Insights&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The majority still use the &lt;strong&gt;Jakarta EE platform&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Most developers &lt;strong&gt;combine Jakarta EE and MicroProfile&lt;/strong&gt;, though some use Jakarta
EE alone.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSON over HTTP (REST) dominates&lt;/strong&gt; API usage; XML and SOAP are declining, while
OpenAPI is widely used.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The &lt;strong&gt;Jakarta EE Working Group&lt;/strong&gt; thanks all participants and will use these
insights to guide future improvements.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>2024 Cloud Native Java Survey Findings</title>
      <link>https://jakarta.ee/blogs/2024-cloud-native-java-survey-findings/</link>
      <pubDate>Tue, 11 Feb 2025 00:00:00 +0000</pubDate>
      
        <author>shabnam.mayel@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://jakarta.ee/blogs/2024-cloud-native-java-survey-findings/</guid>
      <description>&lt;p&gt;In 2024, the Jakarta EE Working Group launched a brand new effort named the
“Cloud Native Java Survey.” This blog, authored by the Jakarta EE Marketing
Committee, summarizes the key insights from the survey.
You may already be aware of the annual &lt;a href=&#34;https://outreach.eclipse.foundation/jakarta-ee-developer-survey-2024&#34;&gt;Jakarta EE Developer Survey&lt;/a&gt;,
also organized by the working group. While the Developer Survey provides a
broad view of the ecosystem and Java trends, the Cloud Native Java Survey dives
deeper into technical details, encompassing both Jakarta EE and MicroProfile.
The survey was conducted between July 11, 2024 and August 23, 2024.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/batch/2.1/changelog/</link>
      <pubDate>Fri, 12 Apr 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/batch/2.1/changelog/</guid>
      <description>Batch 2.1 Change Log</description>
    </item>
    
    <item>
      <title>Become a Sponsor | Jakarta EE</title>
      <link>https://jakarta.ee/supporters/sponsor/</link>
      <pubDate>Wed, 03 Apr 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/supporters/sponsor/</guid>
      <description>&lt;section class=&#34;row padding-y-large text-center&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;row&#34;&gt;
      &lt;div class=&#34;col-sm-18 col-sm-offset-3&#34;&gt;
        &lt;p class=&#34;fw-500&#34;&gt;Become a sponsor of the Jakarta EE Working Group and&lt;/p&gt;&lt;h2 class=&#34;big-text uppercase text-secondary&#34;&gt;Empower the Future of Enterprise Java&lt;/h2&gt;&lt;p class=&#34;section-featured-text text-primary&#34;&gt;Your organisation will play a pivotal role in shaping the future of open source enterprise Java and ensuring the continued growth and success of the global Java community.&lt;/p&gt;
        &lt;hr class=&#34;subsection-divider subsection-divider-darker margin-y-60&#34; /&gt;
        &lt;p
          class=&#34;section-featured-text text-secondary font-italic big-text margin-bottom-40&#34;
        &gt;
          By joining our sponsorship program:
        &lt;/p&gt;
        &lt;div class=&#34;row&#34;&gt;
          &lt;div class=&#34;col-md-8 margin-bottom-30&#34;&gt;
            &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
              &lt;div class=&#34;featured-section-cta-item-img bg-primary&#34;&gt;
                &lt;img
                  src=&#34;https://jakarta.ee/supporters/sponsor/images/icons/support.svg&#34;
                  alt=&#34;&#34;
                /&gt;
              &lt;/div&gt;
              &lt;h3 class=&#34;heading-underline&#34;&gt;&lt;div class=&#34;small&#34;&gt;Your&lt;/div&gt;&lt;div&gt;Support&lt;/div&gt;&lt;/h3&gt;&lt;p class=&#34;featured-section-cta-item-body&#34;&gt;will help us maintain and expand our initiatives.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Concurrency Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/concurrency-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/concurrency-explained/</guid>
      <description>&lt;p&gt;Application performance can make or break a user’s experience.
Applications that provide a consistent experience and perform well are
more likely to benefit user productivity. The Jakarta Concurrency
specification targets application performance and usability by providing
a standard API for developing concurrent application processes without
compromising container integrity. It is not recommended to utilize
traditional Java SE threads or timers within a Jakarta EE container
because use of threads or timers may cause reliability issues and
unexpected results. Jakarta Concurrency provides an API that does not
intrude on container integrity, but rather, uses services that are
managed by the container and matches the functionality provided by the
Java SE Concurrency Utilities.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Contexts Dependency Injection Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/contexts-dependency-injection-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/contexts-dependency-injection-explained/</guid>
      <description>&lt;p&gt;Jakarta Dependency Injection provides the ability to make
use of contextual objects in an application with maximum
reusability, testability, and maintainability. This
specification provides a means for developers to easily
obtain objects throughout classes within an application
without the requirement to use constructors, factories, or
service locators.&lt;/p&gt;
&lt;p&gt;Jakarta Contexts and Dependency Injection, Jakarta CDI for
short, is one of the paramount specifications of the
Jakarta EE Platform, as it contains a number of powerful
complimentary services that are utilized across a majority
of Jakarta EE applications. Jakarta CDI has been known as
the &amp;ldquo;glue&amp;rdquo; for the Jakarta EE Platform because one of the
most significant features is the enablement of contextual
objects to be made available for use throughout other
classes and views within an application. The specification
makes use of the Jakarta Dependency Injection specification
to provide this capability, but Jakarta CDI also provides a
number of other features beyond dependency injection
including scope assignment, generation of preconfigured
objects, qualification, initiating code when events occur,
to mention a few.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Platform</title>
      <link>https://jakarta.ee/learn/specification-guides/jakarta-ee-platform/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/jakarta-ee-platform/</guid>
      <description>&lt;p&gt;&lt;strong&gt;The Jakarta EE Platform enables developers to produce
lightweight, cloud native applications while providing
maximum developer productivity&lt;/strong&gt;. Now featuring multiple
profiles geared towards producing microservices or full
stack applications, the Platform provides flexibility for
developing applications of all sizes. &lt;strong&gt;The Platform is
composed of a number of specifications, each targeting
specific areas in application architecture&lt;/strong&gt;. This modular
approach allows the specifications to evolve under
different expert groups and timelines, while the platform
enables each to work together in harmony.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Persistence Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/persistence-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/persistence-explained/</guid>
      <description>&lt;p&gt;Enterprise applications typically require persistence for data storage. The
specification is foundational for many technologies since relational databases
are widely used within the industry. The Jakarta Persistence specification,
also known as Jakarta Persistence API (JPA), encompasses a number of APIs that
facilitate the creation, reading, updating, and deletion of data within data
stores. The specification provides an Entity Manager API which is used to
facilitate the lifecycle of entities within an application. The &lt;code&gt;Query&lt;/code&gt; and
&lt;code&gt;TypedQuery&lt;/code&gt; APIs are used to retrieve data utilizing both static and dynamic
queries. The Metamodel API enables the ability to obtain metadata regarding
managed entities and persistence objects. Lastly, the Criteria API provides a
means for defining queries through the use of object based query objects to
perform strongly-typed queries.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta RESTful Web Services Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/restful-web-services-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/restful-web-services-explained/</guid>
      <description>&lt;p&gt;Jakarta REST is the solution for development of building Representational State
Transfer web services on the Jakarta EE Platform. The specification is easy to
learn, and it enables one to construct powerful REST APIs and it also includes
APIs for working with web services as a client. As such, this specification
is key to the development of microservices and cloud based applications, and it
is part of the Jakarta EE Web Profile as well as the full platform.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Security, Jakarta Authorization, and Jakarta Authentication Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/security-authorization-and-authentication-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/security-authorization-and-authentication-explained/</guid>
      <description>&lt;p&gt;Security is a major component of application development.  Jakarta EE provides
the robust Jakarta Security specification that when paired with the Jakarta
Authentication and Jakarta Authorization specifications, provides APIs that
deliver end-to-end security. There are a large number of application processes
that require security measures, and these specifications provide the ability to
do so in a straightforward manner using annotations and minimal XML
configurations.  Jakarta EE compliant containers and deployment environments
adhere to the constructs of the Authentication and Authorization policies to
ensure that applications can be secured in a standard way and deployed across a
number of different environments.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Servlet, Jakarta Faces and Jakarta Server Pages Explained</title>
      <link>https://jakarta.ee/learn/specification-guides/servlet-faces-and-server-pages-explained/</link>
      <pubDate>Thu, 22 Feb 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/specification-guides/servlet-faces-and-server-pages-explained/</guid>
      <description>&lt;p&gt;The Jakarta EE Platform offers a number of APIs that can be used to create web
based user interfaces. The most mature and perhaps most well known is the
Jakarta Servlet specification. Jakarta Servlet was first released in 1996, and
it enables Java developers to create web pages containing dynamic web content
using pure Java. The specification has changed much over the years and it is
able to interact with modern technologies and comply with the modern era of web
technologies with features such as HTTP/2. Jakarta Server Pages (JSP) was
first released in 1999, and it enables developers to create web based user
interfaces using a mixture of HTML markup and special Jakarta Servlet tags.
JSP enables easy creation of dynamic web views, and it has also made great
progressions over the years to position it for standard model-view-controller
development. Model-View-Controller development specifies clear separation of
view code from business logic, and in the early years of JSP it was common to
see business logic intermixed with HTML code. To that end, Jakarta Faces was
initially released in 2004, and it provides the ability to develop web based
user interfaces with XML for the view and a corresponding Java class to contain
the business logic for the view. This specification has adapted over the years
to continue as a relevant web based user interface API for modern times.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Versioning, Change, and Deprecation Process 1.0</title>
      <link>https://jakarta.ee/committees/specification/versioning/</link>
      <pubDate>Tue, 10 Oct 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/specification/versioning/</guid>
      <description>&lt;h2 id=&#34;content&#34;&gt;Content&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#goals&#34;&gt;Goals&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#definitions&#34;&gt;Definitions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#allowedchanges&#34;&gt;Allowed Changes, Deprecation and Versioning&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#general&#34;&gt;General Rules&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#api&#34;&gt;API&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#behaviour&#34;&gt;Behaviour&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#component&#34;&gt;Component Feature&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#platform&#34;&gt;Platform Feature&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;goals&#34;&gt;Goals&lt;/h2&gt;
&lt;p&gt;It is the desire of the Jakarta EE specification projects to be able to make backwards incompatible changes to new
versions of Jakarta EE specifications.  The goal of this document is to enable that outcome while also providing
guidance so that users can be aware of when backwards incompatible changes have occurred.  The high-level framework in
which this document is written:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to Start with Servlets Using Jakarta EE 10</title>
      <link>https://jakarta.ee/learn/starter-guides/how-to-start-with-servlets/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/learn/starter-guides/how-to-start-with-servlets/</guid>
      <description>&lt;p&gt;This guide aims to walk you through the process of building a simple Servlet
application using &lt;a href=&#34;https://jakarta.ee/specifications/servlet/6.0/&#34;&gt;Jakarta Servlet&lt;/a&gt;. We&amp;rsquo;ll start
by outlining what we aim to achieve and then step-by-step guide you through
setting up your environment, writing code, and deploying the Servlet
application. If you&amp;rsquo;re new to Servlets or Jakarta EE, this guide should be a
great starting point.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ll develop an application that accomplishes the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Presents a form asking the user to select their coffee preferences (e.g.,
black, latte, cold brew).&lt;/li&gt;
&lt;li&gt;Stores these preferences in a session.&lt;/li&gt;
&lt;li&gt;Dynamically generates a &amp;ldquo;Coffee Dashboard,&amp;rdquo; displaying personalized coffee
recommendations.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;OK, now that we have specified our requirements, you will need to follow these
steps:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Unlocking Potential: Persuading Your Employer to Support Your Contribution to Jakarta EE</title>
      <link>https://jakarta.ee/blogs/unlocking-potential-persuading-your-employer-to-support-your-contribution-to-jakarta-ee/</link>
      <pubDate>Thu, 24 Aug 2023 12:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/blogs/unlocking-potential-persuading-your-employer-to-support-your-contribution-to-jakarta-ee/</guid>
      <description>In this blog post, we will explore the numerous benefits that arise when employees are encouraged to contribute to Jakarta EE as part of their normal work activities. These compelling arguments will help you convince your employer of the value it brings to your organisation while respecting the demands of your everyday work.</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/jsonp/2.1/changelog/</link>
      <pubDate>Thu, 11 May 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/jsonp/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/mail/2.1/changelog/</link>
      <pubDate>Fri, 05 May 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/mail/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/activation/2.1/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/activation/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/soap-attachments/3.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/soap-attachments/3.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/xml-binding/4.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/xml-binding/4.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/xml-web-services/4.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/xml-web-services/4.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Why Jakarta EE?</title>
      <link>https://jakarta.ee/about/why-jakarta-ee/</link>
      <pubDate>Thu, 20 Oct 2022 14:49:08 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/about/why-jakarta-ee/</guid>
      <description>&lt;nav class=&#34;table-of-contents margin-bottom-60&#34;&gt;
    &lt;ul class=&#34;table-of-contents-item-list list-unstyled&#34;&gt;

            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is the Standard&#34; href=&#34;#standard&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS THE STANDARD&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is Ubiquitous&#34; href=&#34;#ubiquitous&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS UBIQUITOUS&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is Continuation&#34; href=&#34;#continuation&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS CONTINUATION&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is the Innovative&#34; href=&#34;#innovative&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS INNOVATIVE&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
    &lt;/ul&gt;
&lt;/nav&gt;















    
    


&lt;section id=&#34;standard&#34; class=&#34;split-section row  &#34;&gt;
    &lt;div class=&#34;split-section-inner-container equal-height&#34;&gt;
        &lt;div class=&#34;split-section-image-wrapper col-md-12 padding-0 col-md-push-12 graph-pattern graph-pattern-standard&#34;&gt;
            &lt;img class=&#34;split-section-image img img-responsive&#34; src=&#34;images/standard-image.jpg&#34; alt=&#34;&#34; loading=&#34;lazy&#34; /&gt;        
        &lt;/div&gt;
        &lt;div class=&#34;split-section-content-container col-md-12 col-md-pull-12&#34;&gt;
            &lt;div class=&#34;split-section-content&#34;&gt;
                &lt;div class=&#34;split-section-title-container&#34;&gt;
                    &lt;div class=&#34;split-section-title-icon-wrapper&#34;&gt;
                        &lt;img class=&#34;split-section-title-icon&#34; src=&#34;images/icons/standard-icon.svg&#34; alt=&#34;&#34; /&gt;
                    &lt;/div&gt;
                    &lt;h2 class=&#34;split-section-title big-text&#34;&gt;
                        &lt;span class=&#34;text-primary&#34;&gt;JAKARTA EE&lt;/span&gt;
                        &lt;span class=&#34;text-secondary br&#34;&gt;IS THE STANDARD&lt;/span&gt;
                    &lt;/h2&gt;
                &lt;/div&gt;
                &lt;div class=&#34;split-section-content-body&#34;&gt;
&lt;p&gt;Jakarta EE is the standard, a set of &lt;a href=&#34;https://jakarta.ee/specifications/&#34;&gt;specifications&lt;/a&gt; for
enterprise Java application development. It is well-understood and widely
accepted because of its stability, portability, and backwards compatibility.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Process</title>
      <link>https://jakarta.ee/about/jesp/</link>
      <pubDate>Wed, 31 Aug 2022 13:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/about/jesp/</guid>
      <description>&lt;p&gt;The Jakarta EE Specification Process (JESP) is concerned with the Specification Process as it applies to Specification Projects operating under the purview of the Jakarta EE Working Group.&lt;/p&gt;
&lt;p&gt;The Jakarta EE Specification Committee hereby adopts the &lt;a href=&#34;https://www.eclipse.org/projects/efsp?version=1.3&#34;&gt;Eclipse Foundation Specification Process v1.3&lt;/a&gt; (EFSP) as the Jakarta EE Specification Process with the following modifications:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Any modification to or revision of this Jakarta EE Specification Process, including the adoption of a new version of the EFSP, must be approved by a Super-majority of the Specification Committee, including a Super-majority of the Strategic Members of the Jakarta EE Working Group, in addition to any other ballot requirements set forth in the EFSP.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>javax to jakarta namespace ecosystem progress</title>
      <link>https://jakarta.ee/blogs/javax-jakartaee-namespace-ecosystem-progress/</link>
      <pubDate>Wed, 31 Aug 2022 09:00:00 +0000</pubDate>
      
        <author>martijn@londonjavacommunity.co.uk (Martijn Verburg)</author>
      
      <guid>https://jakarta.ee/blogs/javax-jakartaee-namespace-ecosystem-progress/</guid>
      <description>The Jakarta EE ecosystem has been hard at work transitioning various libraries, framework, servers and tools from the javax namespace to the jakarta.ee namespace. This work is essentially complete with the upcoming release of Jakarta EE 10. JakartaEE developers have a wide range of options in each category, providing great choices!</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/annotations/2.1/changelog/</link>
      <pubDate>Wed, 15 Jun 2022 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/annotations/2.1/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>The 2022 Jakarta EE Developer Survey is Now Open!</title>
      <link>https://jakarta.ee/blogs/the-2022-jakarta-ee-developer-survey-is-now-open/</link>
      <pubDate>Mon, 21 Mar 2022 19:00:00 +0000</pubDate>
      
        <author>shabnam.mayel@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://jakarta.ee/blogs/the-2022-jakarta-ee-developer-survey-is-now-open/</guid>
      <description>Completing the 2022 Jakarta EE Developer Survey takes less than 6 minutes of your time. But your input is extremely important.</description>
    </item>
    
    <item>
      <title>Help Shape the Future of Cloud Native Java</title>
      <link>https://jakarta.ee/community/get-involved/</link>
      <pubDate>Fri, 04 Mar 2022 09:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/community/get-involved/</guid>
      <description>&lt;div class=&#34;get-involved-content-prefix row&#34;&gt;
    &lt;div class=&#34;container&#34;&gt;
        &lt;div class=&#34;col-sm-24&#34;&gt;
            &lt;h2 class=&#34;big-text-secondary&#34;&gt;Get Involved in Jakarta EE!&lt;/h2&gt;
            &lt;p&gt;To get involved in any Jakarta EE project or initiative, start by &lt;a href=&#34;https://accounts.eclipse.org/user/register&#34;&gt;creating an Eclipse Foundation account&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Once you have an account, you can choose any of the methods below to participate.&lt;/p&gt;
        &lt;/div&gt;

    &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&#34;get-involved-blocks&#34;&gt;
    &lt;div class=&#34;container&#34;&gt;
        &lt;div class=&#34;card-container col-xs-24&#34;&gt;
            &lt;div class=&#34;card-panel panel panel-default horizontal-card&#34;&gt;
                &lt;div class=&#34;panel-heading&#34; aria-hidden=&#34;true&#34;&gt;
                    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/images/get-involved/join-conversation.jpg&#34; alt=&#34;Join the Conversation&#34;&gt;
                &lt;/div&gt;
                &lt;div class=&#34;panel-body&#34;&gt;
                    &lt;h3 class=&#34;big-text margin-top-30&#34;&gt;Join the Conversation&lt;/h3&gt;
                    &lt;p&gt;Join our communication channels to learn about the latest community initiatives and determine how you can get involved.&lt;/p&gt;
                    &lt;div class=&#34;row&#34;&gt;
                        &lt;div class=&#34;col-sm-12&#34;&gt;
                            &lt;ul class=&#34;list-unstyled&#34;&gt;
                                &lt;li class=&#34;margin-bottom-15&#34;&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://jakarta.ee/images/get-involved/icons/envelope.svg&#34; alt=&#34;Envelope icon&#34;&gt;&lt;a href=&#34;https://jakarta.ee/connect/&#34;&gt;Join the conversation on email&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://jakarta.ee/images/get-involved/icons/slack.svg&#34; alt=&#34;Slack icon&#34;&gt;&lt;a href=&#34;https://eclipsefoundationhq.slack.com/?redir=%2Fssb%2Fredirect&#34;&gt;Join us on Slack&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                        &lt;div class=&#34;col-sm-12&#34;&gt;
                            &lt;ul class=&#34;list-unstyled&#34;&gt;
                                &lt;li&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://jakarta.ee/images/get-involved/icons/social-media.svg&#34; alt=&#34;Social Media icon&#34;&gt;&lt;a href=&#34;#social-media&#34;&gt;Join us on Social Media&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;

        &lt;div class=&#34;card-container col-xs-24&#34;&gt;
            &lt;div class=&#34;card-panel panel panel-default horizontal-card&#34;&gt;
                &lt;div class=&#34;panel-heading&#34; aria-hidden=&#34;true&#34;&gt;
                    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/images/get-involved/how-to-contribute.jpg&#34; alt=&#34;How to Contribute&#34;&gt;
                &lt;/div&gt;
                &lt;div class=&#34;panel-body&#34;&gt;
                    &lt;h3 class=&#34;big-text margin-top-30&#34;&gt;How to Contribute&lt;/h3&gt;
                    &lt;p&gt;Select a &lt;a href=&#34;https://github.com/eclipse-ee4j&#34;&gt;Jakarta EE project of interest&lt;/a&gt;, join the project&amp;rsquo;s mailing list and start communicating with the team.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Fulfilling the Vision for Open Source, Cloud Native Java</title>
      <link>https://jakarta.ee/resources/ebook/cnj/</link>
      <pubDate>Wed, 16 Feb 2022 09:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/resources/ebook/cnj/</guid>
      <description>As Java industry leaders, developers, and enterprises join forces to evolve Jakarta EE for enterprise workloads in the cloud, we explore what cloud native Java really means, why it matters so much to so many people, and where it’s headed.</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/jsonp/2.0/changelog/</link>
      <pubDate>Fri, 26 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/jsonp/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/mail/2.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/mail/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/soap-attachments/2.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/soap-attachments/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/xml-binding/3.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/xml-binding/3.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/xml-web-services/3.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/xml-web-services/3.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://jakarta.ee/specifications/activation/2.0/changelog/</link>
      <pubDate>Wed, 17 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/activation/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Jakarta EE Compatible Implementations and Compatible Products</title>
      <link>https://jakarta.ee/committees/specification/compatibility/</link>
      <pubDate>Thu, 11 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/specification/compatibility/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Jakarta EE&lt;/strong&gt; is a set of open &lt;a href=&#34;https://jakarta.ee/specifications/&#34; title=&#34;Jakarta EE Specifications&#34;&gt;specifications&lt;/a&gt; used for enterprise Java application development. It is a continuation of Java EE technology that gathers the wide community of Java developers interested in advancing the specifications for future cloud native Java enterprise applications. Each specification release includes its respective Technology Compatibility Kit (TCK). You can find a link to the TCK on the appropriate specification release page, for example see &lt;a href=&#34;https://jakarta.ee/specifications/platform/9/&#34;&gt;Jakarta EE Platform 9.0&lt;/a&gt; or in the case of individual specification see &lt;a href=&#34;https://jakarta.ee/specifications/authentication/2.0/&#34;&gt;Jakarta Authentication 2.0&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Payara Services gains an equal footing with industry leaders at the Eclipse Foundation</title>
      <link>https://jakarta.ee/case-studies/payara/</link>
      <pubDate>Thu, 11 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/case-studies/payara/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Guide to the Jakarta EE Specification Process</title>
      <link>https://jakarta.ee/committees/specification/guide/</link>
      <pubDate>Thu, 04 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/specification/guide/</guid>
      <description>&lt;h2 id=&#34;content&#34;&gt;Content&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#intro&#34;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#creation&#34;&gt;Creation Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#plan&#34;&gt;Plan Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#release&#34;&gt;Release Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#service&#34;&gt;Service Release&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#progress&#34;&gt;Progress Review&lt;/a&gt; &lt;em&gt;(optional)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;intro&#34;&gt;Introduction&lt;/h2&gt;
&lt;p&gt;This article is a self-contained, step-by-step, practical guide to help developers navigate the Jakarta EE Specification Process (&lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;It is meant as a helpful tool, so &lt;strong&gt;if in doubt, always refer to the &lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt; for completeness&lt;/strong&gt;. Contact the &lt;a href=&#34;mailto:jakarta.ee-spec@eclipse.org&#34;&gt;Specification Committee&lt;/a&gt; if you have any questions or comments about anything related to the development of Jakarta EE Specifications. The &lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt; is an adaptation of the Eclipse Foundation Specification Process (&lt;a href=&#34;https://www.eclipse.org/projects/efsp/&#34;&gt;EFSP&lt;/a&gt;), which is itself an adaptation of the Eclipse Foundation Development Process (&lt;a href=&#34;https://www.eclipse.org/projects/dev_process/&#34;&gt;EDP&lt;/a&gt;).&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Committee Operation</title>
      <link>https://jakarta.ee/committees/specification/operations/</link>
      <pubDate>Wed, 13 Jan 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/specification/operations/</guid>
      <description>&lt;p&gt;This document describes the practices of the Jakarta EE Specification
Committee.&lt;/p&gt;
&lt;p&gt;Changes to this document must be approved by a simple majority vote of
the Jakarta EE specification committee, conducted via the public Jakarta
EE Specification Committee (&lt;a href=&#34;mailto:jakarta.ee-spec@eclipse.org&#34;&gt;jakarta.ee-spec@eclipse.org&lt;/a&gt;) mailing list.&lt;/p&gt;
&lt;p&gt;This is a public document.&lt;/p&gt;
&lt;h2 id=&#34;specification_committee&#34;&gt;Specification Committee&lt;/h2&gt;
&lt;p&gt;The Jakarta EE Specification Committee is responsible for implementing
the Eclipse Foundation Specification Process (EFSP) for all
Specification Projects (as that term is defined by the EFSP) under the
purview of the Jakarta EE Working Group. This includes the adaptation of
the EFSP for Jakarta which is referred to as the Jakarta EE
Specification Process (JESP).&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Proper use of the Jakarta® Brand by Eclipse Projects</title>
      <link>https://jakarta.ee/committees/steering/brand_use_by_projects/</link>
      <pubDate>Tue, 03 Mar 2020 13:10:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/committees/steering/brand_use_by_projects/</guid>
      <description>&lt;p&gt;A critical aspect of managing a brand is avoiding confusion as to what the brand represents, what expectations should we expect to be met when something is labeled with that brand. It is important to clearly delineate what we mean when we label something “Jakarta”, that is, when we use “Jakarta” as a modifier/adjective to an object/noun (e.g., “Jakarta® Faces Specification”),  and managing how it is used in the project space is part of this. Careful use of the name will help the community better understand what is directly represented by the Jakarta brand and what is not.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Adopt a Spec</title>
      <link>https://jakarta.ee/community/adopt-a-spec/</link>
      <pubDate>Sat, 01 Feb 2020 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/community/adopt-a-spec/</guid>
      <description>&lt;p&gt;This program is intended to encourage JUG leaders and members to get involved by adopting a Jakarta EE Specification. The objective is to increase developer level participation in the evolution of the Jakarta EE Specification.&lt;/p&gt;


  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  

  
    
  

  
    
  

  
    
  

  
    
  



&lt;h2 id=&#34;adopters&#34; class=&#34;margin-bottom-20&#34;&gt;Adopters&lt;/h2&gt;
&lt;ul class=&#34;list-inline&#34;&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://gsjug.org&#34; title=&#34;Garden State Java User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/duke-gsjug-twitter.png&#34; alt=&#34;Garden State Java User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.jugistanbul.org/&#34; title=&#34;Istanbul Java User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/jugistanbul.png&#34; alt=&#34;Istanbul Java User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.meetup.com/Javaforum-Malmo/&#34; title=&#34;Javaforum Malmø homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/java_forum_malmo.png&#34; alt=&#34;Javaforum Malmø logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://jugpe.com.br/&#34; title=&#34;JUG-PE homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/jugpe.png&#34; alt=&#34;JUG-PE logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.meetup.com/MadrasJUG/&#34; title=&#34;Madras JUG homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/mjug.svg&#34; alt=&#34;Madras JUG logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://soujava.org.br/&#34; title=&#34;SouJava homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/soujava.png&#34; alt=&#34;SouJava logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://twitter.com/TurkeyJBUG/&#34; title=&#34;Turkey JBoss User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/turkeyjboss.png&#34; alt=&#34;Turkey JBoss User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;http://www.TurkeyJUG.com/&#34; title=&#34;Turkey JUG homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://jakarta.ee/images/spec_adopters/turkeyjug.png&#34; alt=&#34;Turkey JUG logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
&lt;/ul&gt;

&lt;h2 id=&#34;how-jug-leaders-can-help&#34;&gt;How JUG leaders can help:&lt;/h2&gt;
&lt;p&gt;Ensure that the topic of the adopted Jakarta EE Specification is consistently discussed, e.g. dedicate a portion of the existing JUG meetups to the discussions related to the adopted Specification, arrange monthly calls with all representatives of JUGs that are running the program in their groups.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Oracle/JCP Acronym Guidelines</title>
      <link>https://jakarta.ee/legal/acronym_guidelines/</link>
      <pubDate>Wed, 26 Jun 2019 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/legal/acronym_guidelines/</guid>
      <description>&lt;p&gt;&lt;em&gt;Guidelines for the use of existing Oracle/JCP Acronyms. Supplement to the Eclipse Foundation &lt;a href=&#34;https://jakarta.ee/legal/trademark_guidelines/&#34;&gt;Guidelines for Eclipse Logos &amp;amp; Trademarks Policy&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Version 1.0 - June 26, 2019&lt;/p&gt;
&lt;p&gt;The goal of these guidelines is to avoid confusion and ensure that the developer community can easily identify whether a Jakarta EE project, specification, test suite, or other related item originates from Oracle/JCP or from the Eclipse/Jakarta EE process.&lt;/p&gt;
&lt;p&gt;The list of Oracle/JCP acronyms appears at the bottom of this document.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Contribute</title>
      <link>https://jakarta.ee/contribute/</link>
      <pubDate>Tue, 02 Apr 2019 11:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/contribute/</guid>
      <description>&lt;!-- Why contribute to Jakarta EE --&gt;
&lt;div class=&#34;row contribute-why-section padding-bottom-large&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;row&#34;&gt;
      &lt;div class=&#34;col-sm-24&#34;&gt;
        &lt;h1 class=&#34;big-text&#34; id=&#34;why-contribute&#34;&gt;
          Why contribute to Jakarta EE
        &lt;/h1&gt;
      &lt;/div&gt;
      &lt;div class=&#34;col-sm-12 contribute-featured-items&#34;&gt;
        &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
          &lt;div class=&#34;featured-section-cta-item-img&#34;&gt;
            &lt;img src=&#34;images/icon-network.svg&#34; alt=&#34;Get Informed&#34; /&gt;
          &lt;/div&gt;
          &lt;h2 class=&#34;heading-underline&#34;&gt;
            Grow your network and opportunities.
          &lt;/h2&gt;
          &lt;p&gt;
            Open source is one of the best ways to meet and collaborate with
            Java mentors, community experts, and future employers. Many careers
            have taken off because someone’s contributions caught the proper
            attention.
          &lt;/p&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div class=&#34;col-sm-12 contribute-featured-items&#34;&gt;
        &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
          &lt;div class=&#34;featured-section-cta-item-img&#34;&gt;
            &lt;img src=&#34;images/icon-arrow.svg&#34; alt=&#34;Get Informed&#34; /&gt;
          &lt;/div&gt;
          &lt;h2 class=&#34;heading-underline&#34;&gt;Future-proof your career.&lt;/h2&gt;
          &lt;p&gt;
            Jakarta EE is not “old Java EE.” It’s actively evolving to meet
            cloud native demands, including microservices, containers, and
            Kubernetes integration. Contributing means staying ahead of the
            curve, learning directly from experts, and keeping your skills
            sharp.
          &lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Mentorship</title>
      <link>https://jakarta.ee/mentorship/</link>
      <pubDate>Tue, 02 Apr 2019 11:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/mentorship/</guid>
      <description>&lt;!-- Page description: Mentorship Page --&gt;

&lt;section class=&#34;row padding-bottom-50&#34; aria-labelledby=&#34;intro-heading&#34;&gt;
  &lt;h1 id=&#34;intro-heading&#34; class=&#34;sr-only&#34;&gt;Jakarta EE Community Mentor Program Introduction&lt;/h1&gt;
  &lt;div class=&#34;col-sm-12 match-height-item-by-row vertical-align&#34;&gt;
    &lt;p&gt;
      The power of Jakarta EE goes far beyond its specifications and code, it
      relies on contributors.
      &lt;b&gt;The Jakarta EE Community Mentor Program&lt;/b&gt; helps new contributors get
      started quickly and confidently. Open source can be complex, but you don&#39;t
      have to navigate it alone. A mentor shares knowledge, avoids common
      pitfalls, and guides you step by step, from your first contribution to
      making a meaningful impact.
    &lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Mailing Lists</title>
      <link>https://jakarta.ee/connect/mailing-lists/</link>
      <pubDate>Sun, 03 Mar 2019 10:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/connect/mailing-lists/</guid>
      <description>&lt;table&gt;
&lt;tbody&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-community&#34;&gt;Jakarta EE Community&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for updates &amp; connecting with everyone in the ecosystem&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-wg&#34;&gt;Jakarta EE Working Group&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on topics relevant to Jakarta EE Working Group Members; tackling tasks &amp; working with each other&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-platform-dev&#34;&gt;Jakarta EE Platform&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions on topics related to a platform for hosting Jakarta EE Applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-tck-dev&#34;&gt;Jakarta EE Technology Compatibility Kits&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions on Jakarta EE Technology Compatibility Kits&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-spec&#34;&gt;Jakarta EE Specifications&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on evolution of Jakarta EE specifications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-spec-project-leads&#34;&gt;JakartaEE Spec Project Leadership discussions&lt;/a&gt;&lt;/td&gt;&lt;td&gt;JakartaEE Spec Project Leadership discussions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-marketing&#34;&gt;Jakarta EE Marketing&lt;/a&gt;&lt;/td&gt;&lt;td&gt;This list is used for discussions on marketing, collateral, branding, devrel, jakartaone and activities related to enhancing the Jakarta EE brand with community collaboration.&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-examples-dev&#34;&gt;Jakarta EE Examples&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on documentation, samples, tutorials of APIs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaf-dev&#34;&gt;Jakarta Activation&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standardizing services for MIME type data Access&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/ca-dev&#34;&gt;Jakarta Annotations&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to declarative style annotations for common semantic concepts&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaspic-dev&#34;&gt;Jakarta Authentication&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to low-level container SPI for authentication mechanisms&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jacc-dev&#34;&gt;Jakarta Authorization&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to low-level SPI for authorization modules, which are repositories of permissions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartabatch-dev&#34;&gt;Jakarta Batch&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API plus an XML-based batch job specification language&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/bean-validation-dev&#34;&gt;Jakarta Bean Validation&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to object-level constraint declaration and validation facility.&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/cu-dev&#34;&gt;Jakarta Concurrency&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API for application-level concurrency that integrates with the container&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/config-dev&#34;&gt;Jakarta Config&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Jakarta Config project developer discussions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jca-dev&#34;&gt;Jakarta Connectors&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to the architecture connecting applications to enterprise info systems&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/cdi-dev&#34;&gt;Jakarta Context and Dependency Injection&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to declarative dependency injection and supportive services&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/data-dev&#34;&gt;Jakarta Data&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to data repoisitories&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/ejb-dev&#34;&gt;Jakarta Enterprise Beans&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to deployment APIs for assembled Jakarta EE applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/el-dev&#34;&gt;Jakarta Expression Language&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to expression language for Java applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/interceptors-dev&#34;&gt;Jakarta Interceptors&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to defining means of interposing on business methods&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsonb-dev&#34;&gt;Jakarta JSON Binding&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to binding framework for converting POJO to/from JSON docs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsonp-dev&#34;&gt;Jakarta JSON Processing&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to parsing, generating, transforming and query JSON docs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/mail-dev&#34;&gt;Jakarta Mail&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to a framework to build mail and messaging applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/messaging-dev&#34;&gt;Jakarta Messaging&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Messaging. Messaging via loosely coupled reliable async services&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/mvc-dev&#34;&gt;Jakarta MVC&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standardizing the action-based model-view-controller pattern&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/nosql-dev&#34;&gt;Jakarta NoSQL&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to creating applications with NoSQL databases&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jpa-dev&#34;&gt;Jakarta Persistence&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to management of persistence and object / relational mapping&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/rest-dev&#34;&gt;Jakarta RESTful Web Services&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to development of web services following the REST pattern&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/es-dev&#34;&gt;Jakarta Security&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standards for creating secure Jakarta EE applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/faces-dev&#34;&gt;Jakarta Server Faces&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Server Faces used for building user interfaces for web apps&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsp-dev&#34;&gt;Jakarta Server Pages&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to defining templates engine for web applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/servlet-dev&#34;&gt;Jakarta Servlet&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Servlets; handles HTTP requests and responses&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jstl-dev&#34;&gt;Jakarta Standard Tag Library&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to tags to simplify the JSP development&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jta-dev&#34;&gt;Jakarta Transactions&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to handling transactions consistent with X/Open XA-Specs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/websocket-dev&#34;&gt;Jakarta Websocket&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API for Server and Client endpoints for Websocket protocol&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaxws-dev&#34;&gt;Jakarta XML Web Services&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to means for XML-based Web Services based on SOAP&lt;/td&gt; &lt;/tr&gt;
   &lt;/tbody&gt;
   &lt;/table&gt;</description>
    </item>
    
    <item>
      <title>Members</title>
      <link>https://jakarta.ee/membership/members/</link>
      <pubDate>Thu, 28 Feb 2019 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/membership/members/</guid>
      <description>&lt;div class=&#34;eclipsefdn-members-list jakarta-members margin-bottom-50&#34; data-ml-wg=&#34;jakarta-ee&#34;
  data-ml-template=&#34;logo-title-with-levels&#34;&gt;&lt;/div&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Community Cards</title>
      <link>https://jakarta.ee/resources/community-cards/</link>
      <pubDate>Wed, 27 Feb 2019 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/resources/community-cards/</guid>
      <description>&lt;p&gt;Share your participation in the Jakarta EE community with these social media cards!&lt;/p&gt;
&lt;p&gt;Save the card you want and share it on the social media platform of your choice.&lt;/p&gt;
&lt;p&gt;Remember to use the hashtag #JakartaEE&lt;/p&gt;
&lt;p&gt;

&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://jakarta.ee/resources/images/first-patch-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/resources/images/first-patch-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;



&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://jakarta.ee/resources/images/first-pr-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/resources/images/first-pr-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;



&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://jakarta.ee/resources/images/jakarta-ee-user-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/resources/images/jakarta-ee-user-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;



&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://jakarta.ee/resources/images/jakarta-ee-committer-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/resources/images/jakarta-ee-committer-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;



&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://jakarta.ee/resources/images/jakarta-ee-contributor-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://jakarta.ee/resources/images/jakarta-ee-contributor-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Newsletter</title>
      <link>https://jakarta.ee/community/newsletter/</link>
      <pubDate>Mon, 04 Jun 2018 10:00:58 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/community/newsletter/</guid>
      <description>&lt;h2 class=&#34;big-text-secondary margin-bottom-20&#34;&gt;Jakarta EE Newsletters Archives&lt;/h2&gt;

&lt;div class=&#34;row margin-bottom-40&#34;&gt;
  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2020&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2020/may/&#34; target=&#34;_blank&#34;&gt;May: Jakarta EE 9 and Beyond&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2020/february/&#34; target=&#34;_blank&#34;&gt;February: Jakarta EE: The Next Phase of Evolution&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;

  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2019&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/november/&#34; target=&#34;_blank&#34;&gt;November: Jakarta EE Takes Off&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/august/&#34; target=&#34;_blank&#34;&gt;August: Jakarta EE 8 Preview&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/may/&#34; target=&#34;_blank&#34;&gt;May: Onwards and Upwards for the Jakarta Community&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2019/february/&#34; target=&#34;_blank&#34;&gt;February: Jakarta EE - What&#39;s New in 2019?&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;

  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2018&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2018/november/&#34; target=&#34;_blank&#34;&gt;November: Jakarta EE: Latest Developments&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2018/august/&#34; target=&#34;_blank&#34;&gt;August: Exploring Jakarta EE Technologies&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2018/may/&#34; target=&#34;_blank&#34;&gt;May: A First Look at Jakarta EE&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;form action=&#34;https://eclipsecon.us6.list-manage.com/subscribe/post&#34; method=&#34;post&#34; target=&#34;_blank&#34; class=&#34;text-center margin-bottom-60&#34;&gt;
  &lt;input type=&#34;hidden&#34; name=&#34;u&#34; value=&#34;eaf9e1f06f194eadc66788a85&#34;&gt;
  &lt;input type=&#34;hidden&#34; name=&#34;id&#34; value=&#34;98ae69e304&#34;&gt;
  &lt;input type=&#34;submit&#34; value=&#34;Subscribe to our Newsletter&#34; name=&#34;subscribe&#34; class=&#34;button btn btn-primary btn-lg&#34;&gt;
&lt;/form&gt;</description>
    </item>
    
    <item>
      <title>FAQ</title>
      <link>https://jakarta.ee/about/faq/</link>
      <pubDate>Sat, 07 Apr 2018 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/about/faq/</guid>
      <description>&lt;h2 class=&#34;big-text-secondary margin-bottom-30&#34;&gt;Frequently Asked Questions&lt;/h2&gt;

&lt;div class=&#34;panel-group&#34; id=&#34;accordion&#34; role=&#34;tablist&#34; aria-multiselectable=&#34;true&#34;&gt;
  
  
    &lt;div class=&#34;panel panel-default panel-bordered&#34;&gt;
      &lt;div class=&#34;panel-heading&#34; role=&#34;tab&#34; id=&#34;heading-0&#34;&gt;
        &lt;h3 class=&#34;h4 panel-title&#34;&gt;
          &lt;a role=&#34;button&#34; data-toggle=&#34;collapse&#34; data-parent=&#34;#accordion&#34; href=&#34;#collapse-0&#34; aria-expanded=&#34;false&#34; aria-controls=&#34;collapse-0&#34;&gt;
            What is Jakarta EE?
            &lt;i class=&#34;fa fa-chevron-right&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;
            &lt;i class=&#34;fa fa-chevron-down&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;
          &lt;/a&gt;
          
        &lt;/h3&gt;
      &lt;/div&gt;
      &lt;div id=&#34;collapse-0&#34; class=&#34;panel-collapse collapse&#34; role=&#34;tabpanel&#34; aria-labelledby=&#34;heading-0&#34;&gt;
        &lt;div class=&#34;panel-body&#34;&gt;
          &lt;p&gt;Jakarta EE is the future for cloud-native, light-weight, and traditional enterprise Java applications&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Java EE technologies contributed by Oracle are being used to create the new Jakarta EE platform&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The Eclipse Foundation is the home of Cloud Native Java open innovation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The Jakarta EE Working Group is focused on modernizing Java EE technologies and governance processes to be more open and community-based&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Trademark Guidelines</title>
      <link>https://jakarta.ee/legal/trademark_guidelines/</link>
      <pubDate>Thu, 05 Apr 2018 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/legal/trademark_guidelines/</guid>
      <description>&lt;p&gt;&lt;em&gt;Supplement to the Eclipse Foundation Guidelines for Eclipse Logos &amp;amp; Trademarks Policy for Jakarta EE Marks&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Version 1.2 - March 12, 2020&lt;/p&gt;
&lt;p&gt;This document supplements the Eclipse Foundation &lt;a href=&#34;https://www.eclipse.org/legal/logo_guidelines.php&#34;&gt;Guidelines for Eclipse Logos &amp;amp; Trademarks Policy&lt;/a&gt; (this Supplement, together with the Eclipse Foundation Guidelines for Eclipse Logos &amp;amp; Trademarks Policy, collectively, the “Policy”) to address the permitted usage of the Jakarta EE Marks (as defined below). The Jakarta EE marks include, but are not limited to, the following names and/or logos: Jakarta EE, Jakarta EE Working Group, Jakarta EE Member, and Jakarta EE Compatible, (collectively the “Jakarta EE Marks”). The full guidelines on the usage of the Jakarta EE Marks are described in the &lt;a href=&#34;https://jakarta.ee/legal/trademark_guidelines/jakarta-ee-branding-guidelines.pdf&#34;&gt;Jakarta EE Brand Usage Handbook&lt;/a&gt;. Use of the Jakarta EE Marks must at all times conform to the Policy.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/creation_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/creation_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;creation-review-pr-template&#34;&gt;Creation Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to Specification Project:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_index_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat&amp;rdquo;&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/plan_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/plan_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;plan-review-pr-template&#34;&gt;Plan Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/x.y/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat X.Y (under development)&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes a plan for the release. Usually, a couple of statements is enough. Otherwise, a link to a document describing the release.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes a detailed description of any backward incompatibility (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if none)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Declares optional features if there are any (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if none)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes minimum Java SE version&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Describe any updates or required changes including splitting out the TCK (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if not planned)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to updated release record&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/progress_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/progress_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;progress-review-pr-template&#34;&gt;Progress Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/x.y/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat X.Y (under development)&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification PDF in the form of jakarta-wombat-spec-x.y-Mn.pdf&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification HTML in the form of jakarta-wombat-spec-x.y-Mn.html&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a Progress Review, that sufficient progress has been made on a Compatible Implementation and TCK, to ensure that the spec is implementable and testable.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to updated release record&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/pull_request_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/pull_request_template/</guid>
      <description>&lt;h2 id=&#34;specification-pr-template&#34;&gt;Specification PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project release review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version, and the directory contains the following.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification PDF in the form of jakarta-wombat-spec-x.y.pdf&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification HTML in the form of jakarta-wombat-spec-x.y.html&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A specification page named _index.md following the template at:
&lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a Progress Review, that sufficient progress has been made on a Compatible Implementation and TCK, to ensure that the spec is implementable and testable.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a &lt;a href=&#34;https://www.eclipse.org/projects/handbook/#release-review&#34;&gt;Release Review&lt;/a&gt;, a summary that a Compatible Implementation is complete, passes the TCK, and that the TCK includes sufficient coverage of the specification. The TCK users guide MUST include the instructions to run the compatible implementations used to validate the release.
Instructions MAY be by reference.
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Updated release record&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Generated IP Log&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Email to PMC&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Start release review by emailing EMO&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the OSSRH staging repository for the api, javadoc:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the staging directory on downloads.eclipse.org for the proposed EFTL TCK binary:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the compatibility certification request issue:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification JavaDoc in the wombat/x.y/apidocs directory.
If desired, an optional second PR can be created to contain just the JavaDoc in the &lt;code&gt;apidocs&lt;/code&gt; directory.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note: If any item does not apply, check it and mark N/A below it.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/readme/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/readme/</guid>
      <description>&lt;h1 id=&#34;specifications&#34;&gt;specifications&lt;/h1&gt;
&lt;p&gt;This site is powered by &lt;a href=&#34;https://www.netlify.com/&#34;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/specifications/service_release_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/specifications/service_release_pr_template/</guid>
      <description>&lt;h2 id=&#34;specification-service-release-pr-template&#34;&gt;Specification Service Release PR template&lt;/h2&gt;
&lt;p&gt;When creating a service release, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the Eclipse Project release record:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the OSSRH staging repository for the api, javadoc:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the staging directory on downloads.eclipse.org for the proposed EFTL TCK binary:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the compatibility certification request (CCR) issue:
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification JavaDoc in the &lt;code&gt;wombat/x.y/apidocs&lt;/code&gt; directory.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Changelog file at this location describing service release updates, &lt;code&gt;wombat/x.y/changelog&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Update &lt;code&gt;wombat/x.y/_index.md&lt;/code&gt; accordingly.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Start service release review by emailing &lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-spec&#34;&gt;Specification Committee&lt;/a&gt; and referencing this PR.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note: Specifications themselves do not have service releases.  Only the associated API (limited to JavaDoc updates), JavaDoc, and TCK artifacts can have service releases.  Thus, the Specification version does not use the third digit &amp;ndash; only the &lt;code&gt;x.y&lt;/code&gt; version is used in the Specification directory structure.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://jakarta.ee/templates/footer/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/templates/footer/</guid>
      <description></description>
    </item>
    
    <item>
      <title>{{TITLE}}</title>
      <link>https://jakarta.ee/templates/header/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/templates/header/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Developer portal</title>
      <link>https://jakarta.ee/developer-portal/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/developer-portal/</guid>
      <description>&lt;section class=&#34;row position-relative padding-y-large&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;row margin-bottom-60&#34;&gt;
      &lt;img
        class=&#34;w-15 md:w-30 absolute-bottom-right visible-md visible-lg&#34;
        src=&#34;https://jakarta.ee/developer-portal/images/develop/corner-image.webp&#34;
        alt=&#34;person coding&#34;
      /&gt;
      &lt;div class=&#34;col-md-16&#34;&gt;
        &lt;h2 class=&#34;featured-heading text-primary margin-bottom-30 margin-top-10&#34;&gt;
          Develop
          with Jakarta EE
        &lt;/h2&gt;
        &lt;blockquote class=&#34;margin-bottom-40 hidden-md hidden-lg&#34;&gt;
          Build secure, portable, scalable, cloud native apps using Jakarta EE APIs.
        &lt;/blockquote&gt;
        &lt;div class=&#34;grid grid-cols-2 gap-2&#34;&gt;
          &lt;a href=&#34;https://start.jakarta.ee/&#34; class=&#34;icon-box text-current link-unstyled&#34;&gt;
            &lt;i class=&#34;fa fa-arrow-right&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;
            &lt;span class=&#34;text-primary inline-icon&#34;
              &gt;&lt;svg width=&#34;40&#34; height=&#34;40&#34; viewBox=&#34;0 0 40 40&#34; fill=&#34;none&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34;&gt;
&lt;path d=&#34;M30.6406 20C31.804 18.3982 32.8087 16.687 33.6406 14.8906C35.375 11.0469 35.3906 7.98436 33.7031 6.29686C30.9688 3.57811 25.3906 5.53123 20 9.37498C14.6094 5.53123 9.03125 3.57811 6.29687 6.29686C4.60937 7.98436 4.625 11.0469 6.35937 14.8906C7.19127 16.687 8.19601 18.3982 9.35937 20C8.19601 21.6018 7.19127 23.313 6.35937 25.1094C4.625 28.9531 4.60937 32.0156 6.29687 33.7031C7.17187 34.5781 8.34375 34.9687 9.71875 34.9687C12.5937 34.9687 16.3437 33.2344 20 30.625C23.6562 33.2344 27.4063 34.9687 30.2812 34.9687C31.6563 34.9687 32.8281 34.5781 33.7031 33.7031C35.3906 32.0156 35.375 28.9531 33.6406 25.1094C32.8087 23.313 31.804 21.6018 30.6406 20ZM30.2812 7.54686C31.0313 7.54686 31.5938 7.71873 31.9375 8.06248C32.8125 8.95311 32.5938 11.1094 31.3594 13.8594C30.7088 15.2736 29.935 16.6278 29.0469 17.9062C28.0469 16.6719 26.9375 15.4531 25.75 14.25C24.5625 13.0469 23.3438 11.9844 22.0781 10.9531C25.5 8.62498 28.4375 7.54686 30.2812 7.54686ZM27.5156 20C26.4213 21.3992 25.242 22.7299 23.9844 23.9844C22.7215 25.238 21.3914 26.422 20 27.5312C18.6086 26.422 17.2785 25.238 16.0156 23.9844C14.758 22.7299 13.5787 21.3992 12.4844 20C13.5787 18.6007 14.758 17.2701 16.0156 16.0156C17.2785 14.762 18.6086 13.5779 20 12.4687C21.3914 13.5779 22.7215 14.762 23.9844 16.0156C25.242 17.2701 26.4213 18.6007 27.5156 20ZM8.64062 13.8594C7.40625 11.1094 7.1875 8.95311 8.0625 8.06248C8.40625 7.71873 8.96875 7.54686 9.71875 7.54686C11.5625 7.54686 14.5 8.62498 17.9219 10.9531C16.6562 11.9844 15.4219 13.0937 14.25 14.25C13.0781 15.4062 11.9531 16.6719 10.9531 17.9062C10.065 16.6278 9.29117 15.2736 8.64062 13.8594ZM8.0625 31.9375C7.1875 31.0469 7.40625 28.8906 8.64062 26.1406C9.29117 24.7264 10.065 23.3722 10.9531 22.0937C11.9531 23.3281 13.0625 24.5469 14.25 25.75C15.4375 26.9531 16.6562 28.0156 17.9219 29.0469C13.1094 32.3125 9.25 33.125 8.0625 31.9375ZM31.9375 31.9375C31.5938 32.2812 31.0313 32.4531 30.2812 32.4531C28.4375 32.4531 25.5 31.375 22.0781 29.0469C23.3438 28.0156 24.5781 26.9062 25.75 25.75C26.9219 24.5937 28.0469 23.3281 29.0469 22.0937C29.935 23.3722 30.7088 24.7264 31.3594 26.1406C32.5938 28.8906 32.8125 31.0469 31.9375 31.9375ZM21.875 20C21.875 20.3708 21.765 20.7333 21.559 21.0417C21.353 21.35 21.0601 21.5903 20.7175 21.7323C20.3749 21.8742 19.9979 21.9113 19.6342 21.839C19.2705 21.7666 18.9364 21.588 18.6742 21.3258C18.412 21.0636 18.2334 20.7295 18.161 20.3658C18.0887 20.0021 18.1258 19.6251 18.2677 19.2824C18.4096 18.9398 18.65 18.647 18.9583 18.441C19.2666 18.2349 19.6292 18.125 20 18.125C20.4973 18.125 20.9742 18.3225 21.3258 18.6742C21.6775 19.0258 21.875 19.5027 21.875 20Z&#34; fill=&#34;currentColor&#34;/&gt;
&lt;/svg&gt;

&lt;/span
            &gt;
            &lt;h4 class=&#34;text-primary font-semibold&#34;&gt;
              Get started
            &lt;/h4&gt;
            &lt;p&gt;
              Generate a Jakarta EE project template and begin building right away.
            &lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE 10 Tools Vendor Datasheet</title>
      <link>https://jakarta.ee/resources/datasheets/jakarta-ee-10-tools-vendor/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/resources/datasheets/jakarta-ee-10-tools-vendor/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&lt;/h2&gt;
&lt;p&gt;Jakarta EE 10 is a major release of the Jakarta EE platform, which provides a
comprehensive set of APIs and services for developing and deploying Enterprise
Java applications. Jakarta EE 10 includes a number of new features and
improvements over Jakarta EE 9, including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Support for Java 11 and 17:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Jakarta EE 10 requires Java 11 as the minimum supported version of Java. This
means that applications developed on Jakarta EE 10 will be able to take
advantage of the latest features and performance improvements in Java 11. Java
17 support is also available.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Join Jakarta EE</title>
      <link>https://jakarta.ee/join-us/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://jakarta.ee/join-us/</guid>
      <description>&lt;section class=&#34;row&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;grid sm:grid-cols-3 gap-2&#34;&gt;
      &lt;div class=&#34;card&#34;&gt;
        &lt;img
          class=&#34;card-img-top&#34;
          src=&#34;https://jakarta.ee/join-us/images/card-1.webp&#34;
          alt=&#34;members presenting&#34;
        /&gt;
        &lt;div class=&#34;card-body&#34;&gt;
          &lt;h5 class=&#34;card-title&#34;&gt;Become a member&lt;/h5&gt;
          &lt;h6 class=&#34;card-subtitle&#34;&gt;Shape the future of enterprise Java&lt;/h6&gt;
          &lt;p class=&#34;card-text&#34;&gt;
            Join industry leaders and innovators driving Jakarta EE forward. As a member, you&amp;#39;ll help guide the technology&amp;#39;s evolution, influence key decisions, and gain visibility as part of the open enterprise Java ecosystem.
          &lt;/p&gt;
        &lt;/div&gt;
        &lt;div class=&#34;card-footer&#34;&gt;
          &lt;a href=&#34;https://jakarta.ee/membership/&#34; class=&#34;btn btn-secondary&#34;&gt;Learn about membership&lt;/a&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div class=&#34;card&#34;&gt;
        &lt;img
          class=&#34;card-img-top&#34;
          src=&#34;https://jakarta.ee/join-us/images/card-2.webp&#34;
          alt=&#34;members presenting&#34;
        /&gt;
        &lt;div class=&#34;card-body&#34;&gt;
          &lt;h5 class=&#34;card-title&#34;&gt;Contribute to projects&lt;/h5&gt;
          &lt;h6 class=&#34;card-subtitle&#34;&gt;Turn your expertise into impact.&lt;/h6&gt;
          &lt;p class=&#34;card-text&#34;&gt;
            Join our global community of developers and make your mark on the Jakarta EE platform. From code to documentation, every contribution helps strengthen open, cloud native enterprise Java.
          &lt;/p&gt;</description>
    </item>
    
  </channel>
</rss>
