How to test Jakarta Faces with HTMLUnit and Arquillian

In this article we will walk through the HTMLUnit library to learn how to test Web applications. You can combine HTMLUnit with Arquillian to test Jakarta Faces applications with ease. What is HTML Unit? HTMLUnit is a Java-based testing tool that allows developers to automate testing of web applications. It simulates a web browser, allowing … Read more

Categories JSF

Top 5 solutions for Java Http Clients

 

There are several ways to create an HTTP client in Java. In this tutorial, we will explore five different options for creating an HTTP client in Java, ranging from low-level libraries to high-level frameworks.

Read more

How to run WildFly with Docker

This is the first of a set of tutorials about the Docker framework. In this one we will learn how to install the Docker platform on a Linux Centos machine and pull and execute a WildFly image on the top of it. Firstly, what is Docker ? Docker is a container-based software framework for automating … Read more

Getting started with QuarkusIO

This tutorial will introduce you to QuarkusIO, the latest framework for building supersonic Java applications. In this tutorial we will have first a short introduction to what is Quarkus . Then, we will cover the basic installation steps. Finally, we will build a minimal Quarkus application.

Read more

gRPC made easy with Quarkus

This article discusses how to create applications with the gRPC framework and Quarkus. We will reuse the sample Service definition from first Java gRPC application and run it as Quarkus REST application. Defining the gRPC Service Firstly, we recommend reading this article for an introduction to the gRPC framework: Getting started with gRPC on Java … Read more

Getting started with gRPC on Java

This article is an introduction to gRPC framework which allows to connect services across data centers using high performance Remote Procedure Calls (RPC). To learn the building blocks of this framework, we will show how to create and test your first gRPC application in Java.

Read more

How to configure WildFly in Domain mode

In this article we will learn the basics of Domain mode configuration for WildFly application server / JBoss EAP covering the new Elytronbased configuration. In the second part of this article we will discuss the legacy Domain configuration.

Read more