Getting Started with Jenkins: A Step-by-Step Guide

Are you looking to streamline your software development process and automate your build workflows? Look no further than Jenkins. Jenkins is a popular open-source automation server that allows developers to build, test, and deploy their projects with ease. In this comprehensive tutorial, we will guide you through the process of setting up Jenkins and demonstrate … Read more

MongoDB Java Driver – Quick reference

The MongoDB Java Driver is a library that provides a Java-based interface for interacting with MongoDB, a popular NoSQL document database. It allows Java developers to connect to MongoDB databases, perform CRUD (Create, Read, Update, Delete) operations, and execute advanced queries using the Java programming language.

Read more

Create GWT applications on JBoss AS

This tutorial shows how to create Google Web Toolkit applications (GWT) using Eclipse and how to deploy them on WildFly. In the second part of this tutorial, we will show also how to interact with application server serices like RESTful Web services.

Read more

3 ways you can connect to MongoDB from WildFly – JBoss EAP

In this updated tutorial we will learn some possible ways to use MongoDB NoSQL Database from within an application server like WildFly or JBoss EAP. 1) Using the MongoDB Java Driver The most common way to connect to MongoDB from Java applications is by means of the MongoDB Java Driver which provides a simple and … Read more

Introduction to Continuous Integration and Delivery

This tutorial (taken from Hands-On Continuous Integration and Delivery) will provide an overview of the best Continuous Integration and Delivery solutions available to automate organizations builds/deployments/tests There are several terms that are important when trying to learn about Continuous Integration and Continuous Delivery: Definition of Automation Automation is essentially any task that is completed without … Read more

Using Templates in Jenkins Job Builder

This is the second tutorial about Jenkins Job Builder. In the first one (Jenkins Job Builder quickstart) we have learned how to define a simple job using YAML syntax and upload it as a job on jenkins. In this tutorial we will learn how to use Tempates to allow us to reuse parts of our … Read more

Jenkins Job Builder quickstart

In this tutorial we will learn how to use Jenkins Job Builder to upload and maintain your Jenkins jobs using simple and human readable YAML or JSON files. If you are using Jenkins, chances are that you are configuring them using its Web interface. While the Web interface of Jenkins can look quite simple for … Read more

Using Jenkins REST Api to manage your jobs remotely

In this tutorial we will learn how we can use the REST API to manage your Jenkins Jobs remotely. Getting Started with Jenkins REST API Many objects of Jenkins provide the remote access API. They are available at /…/api/ where “…” portion is the object for which you’d like to access. The simplest way to … Read more