Posts from Luqman Saeed

Photo of Luqman Saeed
Senior Java Developer specializing in scalable, cloud-native enterprise applications on the Jakarta EE Platform.

Find me on:

What to Expect From Jakarta Concurrency 3.1 With Jakarta EE 11?

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

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

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

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

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.

What's Coming in Jakarta EE 11?

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 - Statements Before super()

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!