Posts tagged Developer (3)
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.
Payara Platform Roadmap Update - August 2024
Published on 15 Aug 2024
by Ilias Efstathiou
Topics:
Java EE,
DevOps,
Developer,
Payara Platform,
Java,
Jakarta EE
|
0 Comments
Now that we're eight months into 2024 (already!?), and in the middle of summer, it seems like a good time to catch up and update you on the Payara Roadmap for 2024 - let's see what we've done and what we are still planning to do for the rest of the year and beyond.
You can also watch the Payara Roadmap Update presented at the Virtual Payara Conference last month.
Ensuring Seamless Operations and Maximum Profitability: Key Insights on Application Server Efficiency and SLAs - Part 2
Published on 12 Aug 2024
by Chiara Civardi
Topics:
Ops Teams,
Upgrade,
DevOps,
Monitoring,
Developer,
Payara Support,
Migration,
Payara InSight,
deployment group,
service
|
0 Comments
Robust and efficient application servers are crucial for companies relying on software applications, whether supporting e-commerce platforms, financial services portals, or internal operations. To ensure smooth operations and deliver seamless services to users, it's essential to partner with vendors who can provide a system runtime that offers maximum uptime. This reduces costs and optimizes performance, profitability, and user satisfaction. Effective service level agreements (SLAs) with these vendors play a key role in minimizing disruptions and ensuring that your applications run efficiently and reliably.
In this blog post, we share insights from industry players on what to look for in application runtime SLAs to minimize disruptions.
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
How To Make Your Apps Work All The Time
Published on 29 Jul 2024
by Chiara Civardi
Topics:
DevOps,
Developer
|
0 Comments
With business running around the clock, customers and staff expect uninterrupted access to key software applications, making uptime essential to deliver optimum user experience. By implementing strategies aimed at keeping applications online, operational and responsive, companies can enhance their profitability, profile and overall competitiveness in the marketplace.
We interviewed our experts Luqman Saeed, Fabio Turizo and Patrik Duditš to help you with a few key tips on how to develop applications with high availability, consistency and reliability.
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!
When Is It Time To Move From Payara Community to Payara Enterprise?
Published on 23 Jul 2024
by Valentina Kovacic
Topics:
DevOps,
Developer,
Payara Enterprise,
Payara Community
|
0 Comments
“Which version of the Payara Platform is right for me?” We get asked this question all the time, so we wanted to provide you with a more in-depth discussion that outlines the similarities and differences between the two editions of the Payara Platform, Enterprise and Community, to help you choose the one that best fits your needs.
Nugget Friday - Structured Concurrency in Java
Published on 19 Jul 2024
by Luqman Saeed
Topics:
Developer,
Java
|
0 Comments
Ensuring Seamless Operations and Maximum Profitability: Key Insights on Application Server Efficiency and SLAs - Part 1
Published on 18 Jul 2024
by Chiara Civardi
Topics:
Ops Teams,
Upgrade,
DevOps,
Monitoring,
Developer,
Payara Support,
Migration,
diagnostics
|
0 Comments
Robust and efficient application servers are essential for companies relying on software applications, whether these support e-commerce platforms, financial services portals or internal operations. To help ensure smooth operations, deliver seamless services to users and generate revenue, it’s important that the runtime in place can offer maximum uptime to reduce cost while optimizing performance, profitability and user satisfaction.
In this blog post, we share insights from industry players on the impact of unexpected application server issues and downtime as well as how to reduce them.
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.