How to create a Maven project from Eclipse

Maven is a popular build automation tool used primarily for Java-based projects, one of the most widely used programming languages. When it comes to Java development, Eclipse is a commonly used integrated development environment (IDE). Basics of Eclipse Eclipse is a powerful IDE widely used for Java and Android application development. It offers an excellent … Read more

How to reverse Engineer your DB schema in Java

[Updated] In this article we will show how to reverse engineer your database schema into JPA/Hibernate Entity objects using JBoss Forge which is a free tool that enables to scaffold Java projects. It also enables to reverse engineer the Entities from the Database. Installing Forge Firstly, install JBoss forge as IDE plugin or as OS tool … Read more

Introduction to Maven Daemon (mvnd)

Maven Daemon (mvnd) is a background process that can speed up Maven builds by keeping a daemon process running in the background. This allows Maven to start up faster, as it does not have to initialize the build process from scratch for each build. In this tutorial, we will cover how to install and configure mvnd, as well as how to use it to speed up your Maven builds.

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