Comparing Java Cloud Providers: Payara Cloud vs. Others
Published on 24 May 2024
by Luqman Saeed
0 Comments
Choosing the right cloud platform for your Java applications can significantly improve development speed, scalability and overall costs. While popular options such as Amazon Web Services (AWS), Azure and Google Cloud Platform (GCP) offer valuable solutions, a more niche, highly specialized provider like Payara can deliver effective platforms that bring unique Java-centric advantages: Payara Cloud. Let's take a look at Payara Cloud and how it compares to other common alternatives.
An Ode To Java
Published on 23 May 2024
by Luqman Saeed
Topics:
Java
|
0 Comments
Today May 23rd marks the 29th birthday of the Java Platform. First debuting in in 1995, the platform has grown to become one of the most used technologies in the world. On this 29th occasion of its birthday, I got an AI chatbot to compose an ode for the Java Platform. So dear Java, here's an ode to you on your birthday from myself and everyone at Payara!
YouTube Playlist - Connecting Your Payara Cloud Application to a PostgreSQL Database on Neon
Published on 23 May 2024
by Luqman Saeed
Topics:
Payara Cloud,
Getting Started with Payara Cloud,
PostgreSQL®,
Neon
|
0 Comments
By integrating your Payara Cloud application with a PostgreSQL database on Neon, you can unlock a number of key benefits that can improve your application, such as enhanced scalability, reliability and performance. To help you seamlessly carry out this operation, we have created a playlist on YouTube to offer an easy to follow video tutorial.
Debugging Jakarta CDI Applications: A Quick Intro to Payara Server's CDI Tools
Published on 13 May 2024
by Luqman Saeed
Topics:
Payara Community,
Jakarta EE
|
0 Comments
What’s New In The May 2024 Payara Platform Release
Published on 08 May 2024
by Luqman Saeed
Topics:
Payara Platform
|
0 Comments
Caching REST Resources In Jakarta REST (formerly JAX-RS)
Published on 07 May 2024
by Luqman Saeed
Topics:
REST,
Jakarta EE
|
0 Comments
REST, or Representational State Transfer, is the web standard for building APIs and applications. It offers a lightweight architecture for exchanging data between applications over the web. Jakarta REST (formerly JAX-RS) is the standard API for building RESTful web services on the Jakarta EE Platform.
This blog post looks at caching within Jakarta REST. We'll explore how to use the built-in features and functionalities to enhance the performance and user experience of your RESTful APIs through resource caching. By using these techniques, you can significantly reduce server load, improve responsiveness, and enhance the overall efficiency of your web resources.
Maven Dependency Scopes: Choosing the Right Tool for the Job
Published on 03 May 2024
by Luqman Saeed
Topics:
Maven,
Java
|
0 Comments
Maven is arguably the most used build automation tool in the Java ecosystem. With that great power and popularity, comes great...configuration options! One such option that can leave you scratching your head is dependency scopes. This blog post takes a quick look at maven scopes, what they are and when to choose which scope.
Microservices Mania: Are Moduliths the Saner Path to Scalable Architectures?
Published on 02 May 2024
by Luqman Saeed
Topics:
Microservices,
Payara Platform,
Jakarta EE
|
0 Comments
Introduction
Lately, microservices have become extremely popular in software design. They offer the ability to scale, deploy updates independently and use different technologies. However, it's easy to forget how complex microservices can be to manage. Inspired in part by the introduction of Spring Modulith, a top-level Spring project aimed at helping developers create evolvable applications, this blog post takes a fresh look at the concept of modularity.
What’s New In The April 2024 Payara Platform Release
Published on 10 Apr 2024
by Luqman Saeed
Topics:
Payara Platform,
New Releases
|
0 Comments
We're excited to announce the April 2024 release of Payara Platform! This update includes a mix of critical bug fixes, component upgrades, and exciting new tools in the Payara Tooling Ecosystem. Our enterprise customers will particularly benefit from the new Diagnostics Tool and Dependabot scanner, designed to streamline operations and security. Also, everyone gets a glimpse into the future with the Payara 7 Alpha 1 preview!
Expressive REST Resources with Java Records and Jakarta REST
Published on 09 Apr 2024
by Luqman Saeed
Topics:
REST,
Java,
Jakarta EE
|
1 Comment
Modern web applications often adopt a layered architecture to separate concerns and improve maintainability. In this paradigm, your REST API acts as a communication layer, exposing resources to clients while interacting with the deeper layers of your application. Leveraging Java Records as Data Transfer Objects (DTOs) in this context helps to simplify the design of your REST resources, making them more expressive and easier to work with.