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’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!

What’s New In The July 2024 Payara Platform Release

We're pleased to announce the latest releases of Payara Platform, bringing a range of updates across our Enterprise 5 and 6 editions as well as Community. These updates include bug fixes, performance optimizations, security enhancements and component upgrades to help you ensure your Jakarta EE and MicroProfile applications continue to run smoothly and effectively.

Payara Micro: Here's How to Boost Speed and Efficiency

Payara Micro is designed from the ground-up to be nimble for lightweight, fast deployments. As such, it is ideal for microservices and cloud environments. However, there may be instances where you may want to squeeze every bit of performance out of it. In such cases, the minimalist configuration of Payara Micro comes in handy.

Thanks to this, you can cut Payara Micro's footprint and speed up startup times, improving the efficiency of your app even more. In effect, depending on your application, you may be able to slash the startup time by up to a third! Here's how.

Nugget Friday - InputStream To String Post Java 9

It's Nugget Friday again, and we're excited to bring you another valuable titbit to our beloved coders! In this instalment of our Friday Nugget series, we're diving into a common yet essential task for developers, especially when handling data read from a file, network or database: converting an InputStream to a String in Java. Knowing how to do this is crucial for efficiently managing IO and data processing tasks.

Nugget Friday - Did You Know This About HashMaps?

It’s Friday and we kick off the maiden edition of Nugget Friday. So, what is it? Nugget Friday is going to be a series of short blog posts that focus on hidden nuggets in the various JDK releases since Java 9. In this maiden edition, we look at a very obscure static method on the HashMap class introduced in Java 19.