When working with RESTful web services, it is often useful to be able to trace requests to better understand what is happening. Fortunately, this is relatively easy to do with WildFly and Resteasy. In this article, we will look at how to configure tracing for REST requests using an enhancement available in WildFly 28.
F.Marchioni
Getting started with Keycloak powered by Quarkus
Throughout this article, we will delve into the best practices for installing and running Keycloak powered by Quarkus, exploring topics such as Keycloak authentication, Keycloak authorization, and secure microservice architecture. By the end, you’ll unlock the potential of Keycloak powered by Quarkus,
How to configure PrimeFaces Themes
PrimeFaces themes are pre-designed sets of styles that define the appearance of various UI components within the library. These themes encompass elements like fonts, colors, spacing, and other design attributes. By selecting an appropriate theme, developers can instantly transform the visual presentation of their PrimeFaces components, giving their web application a consistent and polished appearance.
Migrating Portal applications to JSF
This article discusses about how to migrate applications written using Portal/Portlet technology to other Enterprise frameworks such as Jakarta Server Faces. We will at first discuss why Portal applications are no longer a popular choices and then we will discuss the challenges in the migration of Portal applications. The decline of Portal frameworks In a … Read more
WildFly deployable datasources
In this tutorial, we’ll walk through the process of deploying a WildFly datasource XML file as part of your Java EE application. WildFly, formerly known as JBoss AS (Application Server), is a popular open-source application server developed by Red Hat. A datasource XML file contains configuration details for database connections, such as database URL, username, password, and driver class.
Getting started with Hibernate Search
Hibernate Search is an extension of Hibernate, a popular Object-Relational Mapping (ORM) framework for Java applications. It provides full-text search capabilities by integrating with powerful search libraries like Apache Lucene or Elastic Search. In this tutorial we will learn how to create a sample application using Hibernate Search.
How to configure WildFly with YAML files
WildFly 28 includes support for YAML configuration which is offers a more flexible approach in some use cases. In this tutorial we will discuss which are the best scenarios where YAML configuration is a perfect fit and how to configure WildFly to use YAML files
Getting Started with MicroProfile applications
With the transition of Java EE to Jakarta EE, you can now adopt both Jakarta EE standards and MicroProfile stack for your projects. In this tutorial we will show a step-by-step guide to bootstrap a MicroProfile application and how to deploy it on most common Runtimes.
Which is the best IDE for WildFly applications (2023)?
This article describes which are the best IDE available for developing Java Enterprise applications with WildFly or JBoss EAP. We will focus on Development Environments which are free or have a Community version available. Visual Studio Visual Studio Community Edition, a free and robust Integrated Development Environment (IDE) from Microsoft, has garnered immense popularity among … Read more
How to manage a PostgreSQL Database with Docker
Many times we need to quickly access a Database while developing and testing applications. In this scenario, using a Container image of the Database can speed up your development/testing. In this tutorial we will learn how to manage PostgreSQL Database from a Docker container.