This article covers how to create sample random Data for your REST Services using a well-known library Data Faker. We will show how to bind a Fake Model to our Entity so that you can create sample Test Data in a snap!
F.Marchioni
Generating Random Data for REST Services
This is a two-series article which discusses some simple strategies to generate Random data for your REST Services using some simple tools available from the Linux command line. Also, we will show some minimal tool you can install for a wider variety of choices.
Managing Git Repositories with Ansible
Ansible is a powerful automation tool that allows you to manage and configure systems, including version control systems like Git. In this tutorial, we will explore the basics of managing Git repositories using Ansible. We’ll cover the essentials of the Ansible inventory file, introduce the concept of playbooks, and provide an example playbook for cloning … Read more
Openshift Interview Questions (2024)
Here is a list of OpenShift interview questions that can help you to prepare for a Cloud Interview where you will discuss about Red Hat OpenShift. OpenShift Architecture OpenShift Installation Openshift configuration What is an OpenShift project and how does it relate to application configuration? Answer: An OpenShift project is a logical unit that enables … Read more
Getting started with RESTEasy and WildFly
This article will teach you how to write a simple REST Service that you can run on top of WildFly application server, which uses RESTEasy as underlying JAX-RS implementation.
Getting started with FlyWay Database Migrations
This updated tutorial will show you how to perform database migrations using FlyWay in two different use cases: using Flyway Maven’s plugin and performing the Migration within an Enterprise Application running on WildFly.
How to check JVM arguments from the CLI in WildFly
There are several options to collect JVM arguments of WildFly application server from the Command Line. Firstly, if you want to check JVM arguments of a Java process, a simple way to do that is using the ‘jps‘ tool which is available in the ‘bin‘ folder of the JDK. Example: Also, you can use the … Read more
Using REST Services to upload and download files
This REST Service tutorial is a quick guide for handling files upload and download using REST Services. We will create and test a Rest Service to upload and download files using JAX-RS API. Finally, we will show how to build a JUnit 5 Test to test files uploading using RESTEasy Client API. Uploading and Downloading … Read more
JBoss EAP vs WildFly: The definitive guide
This article provides a comprehensive comparison of JBoss EAP vs WildFly. Within this article, we will cover the main differences between the two application servers, which are the different support policies and the mapping of one version versus the other. Let’s dive into the heart of WildFly vs JBoss EAP !
WildFly: How to store sessions in the Database
In this guide, we’ll explore the steps to persist sessions in a database using WildFly or JBoss EAP. This can be particularly useful in scenarios where you need to distribute sessions across multiple server instances or require persistent storage of session data.