Configuring the DataBase in Spring Boot applications

In this tutorial we have learn how to setup a Spring Boot JPA application and deploy in on a Java EE container using the default H2 database: SpringBoot with JPA on WildFly. Now we will learn how to change the Database settings. So here’s the initial Project https://github.com/fmarchioni/mastertheboss/tree/master/spring/SpringBootJPA we have built so far: SpringBootJPA/ ├── … Read more

Spring Boot with JPA on WildFly

In this second tutorial about Spring Boot we will learn how to deploy a JPA based application on a Java EE container such as WildFly 10. We recommend going through our first tutorial to learn how to setup quickly a Maven project with Spring Boot: Spring Boot Hello World on WildFly So we assumed you … Read more

Configuring Activiti Database

In this example we will learn how to configure Activiti to use another Relational Database. We will switch from the default H2 database to PostgreSQL. You can configure a different database using two main strategies: Programmatic configuration Using a Programmatic configuration, you will define the ProcessEngineConfiguration and set JDBC parameters as follows: ProcessEngineConfiguration config = … Read more

Jenkins Source Code Management with Git

Jenkins comes with support for some Source Code Management tools like Subversion and CVS out of the box. if you are using Git, however all you need to do is installing the Jenkins Git plugin. The process is pretty simple and this tutorial will give you a demonstration. Installing Git plugin for Jenkins Start Jenkins … Read more

Jenkins remote application deployment

Jenkins is an opensource continuous delivery and integration server application. You can use it for a variety of purposes such as building your application from version control system, deploy it on different environments or running acceptance tests. In this tutorial we will learn how you can use Jenkins to deploy remotely your application to a … Read more

Creating a DataScroller with Primefaces

In this tutorial you will learn how to use a Primefaces DataScroller to let your application load additional set of Data as you scroll down the Web page (on Demand scrolling). This component is available since Primefaces 5. The structure of the component dataScroller is quite similar to a dataTable. The key attribute of it … Read more

How to create a JEE application with WildFly Swarm in two simple steps

IMPORTANT: The Thorntail project (formerly known as WildFly Swarm) has reached End Of Life. The last Thorntail release is the 2.7.0. You are recommended to evaluate a migration plan for your applications. Check this tutorial to learn more:  How to migrate Thorntail applications Guess what, WildFly Swarm has been released and it’s simpler than ever to … Read more

JMS Clustering in WildFly and JBoss EAP

In this tutorial we will learn how to achieve High Availability in JMS clustering, comparing the configuration available with Hornetq messaging (AS 7 – WildFly 8 – JBoss EAP 6) and Artemis-mq (WildFly 10 or newer and JBoss EAP 7) In order to achieve high availability, you have the choice between using a shared store … Read more

Developing applications with Infinispan in Library Mode

In this tutorial we want to give some guidelines on developing applications with Infinispan or the supported version named JBoss Data Grid. First of all, make a bookmark on the following page which contains the demo quickstart applications, configured to run on JBoss Data Grid: https://github.com/jboss-developer/jboss-jdg-quickstarts The main difference, if you want to run the above … Read more