What’s New In The September 2024 Payara Platform Release?
Published on 11 Sep 2024
by Luqman Saeed
Topics:
Payara Platform,
New Releases
|
0 Comments
We're happy to announce the latest releases of Payara Platform Community 6.2024.9, Payara Platform Enterprise 6.18.0 and Payara Platform Enterprise 5.67.0. These updates bring important security enhancements, bug fixes and component upgrades to improve your Jakarta EE and MicroProfile development experience on the Payara Platform.
What to Expect From Jakarta Concurrency 3.1 With Jakarta EE 11?
Published on 03 Sep 2024
by Luqman Saeed
Topics:
New Releases,
Jakarta EE,
Jakarta Concurrency
|
0 Comments
The upcoming release of Jakarta EE 11 is expected to feature a number of updated specifications. One of the key updates expected in this release is to Jakarta Concurrency, which will be advancing to version 3.1. This update is set to bring a host of new features and improvements aimed at making concurrent programming in Jakarta EE even more powerful and flexible.
Nugget Friday: Simplify Module Imports in Java 23
Published on 23 Aug 2024
by Luqman Saeed
Topics:
Java,
Jakarta EE,
java 23
|
0 Comments
Welcome to this week’s Friday Nugget! In today’s post, we’re focusing on a new feature coming in Java 23 that’s set to make your coding life a little easier, especially if you’ve ever found yourself frustrated by the clutter of import statements: module import declarations. By leveraging such tool, you can streamline your Java code, reduce verbosity and enhance readability, making your development process more efficient.
Cloud Infrastructures: A Closer Look at What's Available Now
Published on 21 Aug 2024
by Luqman Saeed
Topics:
Cloud,
Cloud-native,
Payara Cloud,
Serverless
|
0 Comments
The cloud is highly sought-after for businesses seeking scalability, flexibility and efficiency in their software applications. The variety of cloud infrastructure available can cater to a wide range of needs, making it key for companies looking to leverage the right solution to address specific business needs. But with so many options and sometimes inaccurate terminology, it can be challenging to understand the distinctions between each cloud alternative and ultimately make informed decisions. In this blog post, we’ll explore the setup and advantages of serverless and fully-managed cloud environments, compare them to traditional hybrid clouds, and discuss the security implications of these cutting-edge technologies to help you navigate the cloud landscape with confidence.
Payara Cloud Connectivity: Linking Your Apps to Essential Backend Services
Published on 19 Aug 2024
by Luqman Saeed
Topics:
Cloud,
MicroProfile,
DevOps,
Developer,
Payara Cloud,
deployment group,
Getting Started with Payara Cloud,
Jakarta EE
|
0 Comments
Payara Cloud, our increasingly popular Payara as a Service (PaaS) offering, automates the cloud deployment of your Jakarta EE and MicroProfile applications, making it easy to connect to essential services that your application relies on. This post shows you how to connect your applications to the services they need. This quick tutorial applies whether those services are inside or outside your cloud environment, as long as they are reachable across the internet.
What’s New In The August 2024 Payara Platform Release
Published on 14 Aug 2024
by Luqman Saeed
Topics:
Payara Platform,
New Releases,
Payara Enterprise,
Payara Community
|
0 Comments
We're pleased to announce the latest releases of Payara Platform, addressing key bug fixes and delivering component upgrades for improved performance and security. Thanks to these updates, users of Payara Platform Enterprise and/or Payara Platform Community, can benefit from a more reliable and optimized runtime environment.
Nugget Friday - Streamlining Payara Micro Configurations with Pre-boot and Post-boot Scripts
Published on 09 Aug 2024
by Luqman Saeed
Topics:
Payara Micro
|
0 Comments
Welcome to another episode of Nugget Friday, where we bring you bite-sized insights to make your development journey smoother and more efficient! This week, we're tackling a common challenge: how to dynamically configure your Payara Micro application after it’s already deployed in a production environment.
What's Coming in Jakarta EE 11?
Published on 07 Aug 2024
by Luqman Saeed
Topics:
Java EE,
Jakarta EE,
java se,
Eclipse Foundation
|
0 Comments
The 11th release of Jakarta EE, the open-source successor to Java EE whose advancement is led by the Eclipse Foundation, is still undergoing development. Scheduled for release later in 2024, Jakarta EE 11 will introduce a range of enhancements and new functionalities aimed at improving Java enterprise application development. Let’s take a quick look at what to expect.
Nugget Friday - Stream Gatherers: A New Way to Enhance Your Java Streams
Published on 02 Aug 2024
by Luqman Saeed
Topics:
Developer,
Java,
java 22,
java stream gatherer
|
1 Comment
Nugget Friday - Statements Before super()
Published on 26 Jul 2024
by Luqman Saeed
Topics:
Developer,
Java
|
0 Comments
As Java developers, we’ve long grappled with the constraints of constructor logic and initialization. In the past, if you needed to perform any operations before invoking the superclass constructor (via super()) in any class, you were often forced to rely on helper methods or extra constructors. This mostly ended up with cluttered, hard to read code as you needed to duplicate constructors or find workarounds. Let's look at how to address this in today's Nugget Friday!