What is WildFly application server?

In this tutorial we will learn what is WildFly and how it can help you to develop Java Enterprise Applications. An application server exposes business logic to client applications through various protocols, possibly including HTTP. While a Web server mainly deals with sending HTML for display in a Web browser, an application server is not limited … Read more

Testing REST Services with Postman

Postman is a popular tool for testing APIs in a user-friendly graphical environment. You can use Postman to send API requests to any REST API and receive replies. In this article we will learn how to use it to test a JAX-RS Application which exposes CRUD Endpoints Postman in a nutshell Firstly, you need to … Read more

Top JBoss Interview Questions (2023)

Are you going for a JBoss / WildFly interview ? here is a comprehensive list of JBoss / WildFly interview questions that will shake up your hiring! General JBoss interview questions Q: Name all possible ways you know to start WildFly application server You can do it in at least four ways: Download and unzip … Read more

Java Persistence (JPA) Tutorial with WildFly

Jakarta Persistence API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects/classes and a relational database. It is a part of the Jakarta EE platform, and it provides a standard approach for ORM (Object-Relational Mapping). In this JPA tutorial, we will learn how to use JPA to create, read, update, and delete (CRUD) data in a database.

Read more

How to run a WildFly CLI commands from the shell

WildFly ships with a powerful Command Line Interface which can be run interactively or not. In this tutorial we will learn how to run CLI commands in non-interactive mode. Running CLI commands in a File The simplest option to run CLI commands in non-interactive mode is to include the commands in a text file and … Read more

Categories CLI