What's New in the April 2023 Payara Platform Release?

From the Payara Engineering hutch comes a number of quality of life improvements in the April 2023 Payara Platform Releases.  Payara Platform Community 6.2023.4 comes with a bug fix, 4 component upgrades and 1 improvement. Payara Platform Enterprise 6.1.0 comes with 2 improvements, 1 bug fix and 4 component upgrades. Payara Platform Enterprise 5.50.0 also comes with 1 improvement, 1 bugfix, 1 security fix and 1 component upgrade.

Watch the video: Jakarta EE NoSQL with Google Cloud Firestore

In this code-focused webinar we took a look at how you can use the Google Cloud Firestore NoSQL database service in a Jakarta EE application. The recording is now available to watch - see below or head over to our YouTube Channel.

NoSQL has become a popular RDMS alternative for enterprise applications. There are a myriad of options available for developers to choose from. With advantages such as flexible data models, generally faster queries, support for horizontal scaling and easier developer experience, NoSQL is a great alternative to have in your developer toolbox.

Getting Started With Jakarta EE 10 - Jakarta CDI

Jakarta EE 10, the first major release of the platform since it was transferred to the Eclipse Foundation, did come with a slew of changes and updates to many of its constituent specifications. One such specification that received updates is the Jakarta Contexts and Dependency Injection specification. The specification release version for Jakarta EE 10 is Jakarta CDI 4.0, which came with major changes.

Two of such major changes are the split of the specification into a Lite and Full profiles and the change in default behaviour for an empty beans.xml file. In this blog post, we take a quick look at getting started with Jakarta CDI, in my view, the single most influential specification on the Jakarta EE Platform.

March 2023 Payara Platform Release: Payara 6 Enterprise!

A lot. Hot out of the Payara engineering furnace, we bring you the latest Payara Platform Community and Enterprise releases for the month of March 2023. Payara Platform Enterprise 6.0 gives you a production optimized and commercially supported runtime for your mission-critical projects, combining our top-rated support and 10 year software lifecycle with the very latest version of Jakarta EE.

Payara Platform Community 6.2023.3 is out with 4 improvements, 6 bug fixes and 3 component upgrades. Payara Platform Enterprise 5.49.0 also comes with 4 bug fixes, 3 component upgrades and 1 improvement.

Using UUID As Entity Primary Key In Jakarta EE 10

In prior versions of Jakarta EE, the use of UUID as entity ID or database primary key type was a vendor specific feature. So even though you could use it, you had to rely on vendor specific constructs to get the mapping right. With the release of Jakarta EE 10 however, the Jakarta Persistence specification now provides native support for using UUID as entity ID type.

The jakarta.persistence.GenerationType now has a UUID option that indicates to the persistence provider to generate and assign RFC 4122 UUID to the annotated field. The HelloEntity below shows how to use this new feature.