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!
Nugget Friday - Structured Concurrency in Java
Published on 19 Jul 2024
by Luqman Saeed
Topics:
Developer,
Java
|
0 Comments
What’s New In The July 2024 Payara Platform Release
Published on 17 Jul 2024
by Luqman Saeed
Topics:
Payara Platform
|
0 Comments
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
Published on 15 Jul 2024
by Luqman Saeed
Topics:
Payara Micro
|
0 Comments
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
Published on 12 Jul 2024
by Luqman Saeed
Topics:
Developer,
Java
|
0 Comments
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?
Published on 05 Jul 2024
by Luqman Saeed
Topics:
Java
|
0 Comments
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.