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.

Read more

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

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

Categories CLI

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 !

Read more