Enterprise Java has matured into one of the most stable and widely adopted ecosystems in software development. Yet for many teams, the biggest challenges no longer come from the language itself, but from the complexity of the environments built around it. Modern enterprise Java teams are dealing with a mix of legacy Java EE applications,…...
#EnterpriseJava #JakartaEE #JavaEE #Payara
https://foojay.io/today/enterprise-java-in-practice-fragmentation-platforms-and-real-world-trade-offs/
Enterprise Java in Practice

Learn how enterprise Java teams are modernizing, adopting Kubernetes, and tackling fragmentation. Discover insights from our report and join the webinar for practical, data-driven strategies.

foojay
Just stumbled upon this: #Azul buys #Payara!
I'd say, that's an interesting perspective for #JakartaEE .
https://adtmag.com/articles/2026/01/07/azul-buys-payara.aspx
Azul buys Payara to expand open-source Java stack beyond the JVM -- ADTmag

Java platform provider Azul has acquired Payara, an application server company focused on Jakarta EE, as the vendor looks to expand beyond the Java runtime and sell a broader, commercially supported open-source stack to large enterprises.

ADTmag
【Java】Eclipse2025を使ってJakartaEEで簡単なJAX-RSプロジェクトを作成してみる - Qiita

今回は、Jakarta EE 10 + Maven + JAX-RS(Jersey) を使って とてもシンプルな RESTful CRUD(GET / POST / PUT / DELETE) サンプルを作る手順を 記載します。 イメージ 簡単ですがこんなサンプル画面を作...

Qiita

Announcement by @speakjava: "More Java From Azul! ... We see many synergies between how Payara supports Jakarta EE applications and how Azul supports the JDK."

https://foojay.io/today/more-java-from-azul/

#Java #Azul #Foojay #Payara #JakartaEE

More Java From Azul!

Strategic acquisition bolsters Azul’s Java platform with complementary products, deep Java expertise and accelerated go-to-market capabilities!

foojay

AI is reshaping how we build with #JakartaEE. @jGauravGupta explores how modern #AI tools — including #Payara Starter & Jeddict AI Assistant — address traditional dev pain & boost productivity.

Read his full #JAVAPRO article! 👉 https://javapro.io/2025/04/24/ai-tools-for-jakarta-ee/

#JCON2025 #LLM #NetBeans

Mühsames Schreiben von Boilerplate-Code für #JakartaEE? Nicht nötig! Mit #Jeddict #AI Assistant & #Payara Starter entstehen REST-APIs, Tests & Dokus fast von selbst.

@jGauravGupta denkt die Zukunft des Codens neu: https://javapro.io/2025/04/24/ai-tools-for-jakarta-ee/

#LLM

AI Tools for Jakarta EE - JAVAPRO International

Introduction Artificial Intelligence (AI) is transforming the world of software development, including Jakarta EE. Traditionally, developers relied on…

JAVAPRO International

Using Payara Platform Community Edition?

The Payara Forum is where you can:
💬 Ask questions
🤝 Get help from Payara engineers & community members
💡 Share your feedback & ideas
📢 Stay updated on community-related news and discussions

Join here: https://forum.payara.fish/

#Payara #Java #JakartaEE #FOSS #OpenSource #JavaEE #JavaDeveloper

Payara Forum

The Payara Forum aims to nurture an open, vibrant, collaborative community that builds on the needs of all to advance our software and services while providing support, stability and security.

Payara Forum

Von „Drag & Drop“ zu „Sprich & Bau“: Die neue Generation der #JakartaEE-Entwicklung nutzt #KI, um aus Prompts fertige Apps zu bauen.

Gaurav Gupta ermöglicht produktionsreife Anwendungen ohne Tippen: https://javapro.io/2025/04/24/ai-tools-for-jakarta-ee/

#Payara #Jeddict #LLM

AI Tools for Jakarta EE - JAVAPRO International

Introduction Artificial Intelligence (AI) is transforming the world of software development, including Jakarta EE. Traditionally, developers relied on…

JAVAPRO International

You speak. It builds. Natural language in → Java REST API out. Gaurav Gupta shows how #Payara Starter & Jeddict AI Assistant are reshaping how we code #JakartaEE. No more templates & repetition.

Curious? Dive in: https://javapro.io/2025/04/24/ai-tools-for-jakarta-ee/

#LLM #Netbeans

AI Tools for Jakarta EE - JAVAPRO International

Introduction Artificial Intelligence (AI) is transforming the world of software development, including Jakarta EE. Traditionally, developers relied on…

JAVAPRO International

📰 New Post: EJB3, Stateful Firewalls, and Connection Timeouts with Payara

https://www.devwithimagination.com/2025/06/01/ejb3-stateful-firewalls-and-connection-timeouts-with-payara/

#payara

EJB3, Stateful Firewalls, and Connection Timeouts with Payara

Recently, I encountered an interesting and frustrating problem when troubleshooting an EJB3 connection issue between two Payara server instances. After a change in firewall vendor, we noticed that remote EJB3 calls would start hanging after a period of inactivity. Initially, it seemed like an intermittent issue — but the deeper I looked, the more it felt like it never should have worked before the move either - a lovely Schroedinbug. In this post, I’ll walk through the issue, why it happened, and the solution that ultimately fixed it. The Problem Our system uses remote EJB3 calls between two Payara instances, communicating over a network with a stateful firewall in between. After the firewall vendor change, we started seeing EJB3 calls hang indefinitely if the connection had been idle for some time. Once the hang occurred, it would eventually trigger client-side timeouts, retries, and application instability. Here’s a simple view of the setup:

Dev With Imagination