Skip to content

Add Wildfly to Eclipse

Last Updated on 11/11/2020

Wildfly logo

This tutorial will show how to download and install the Wildfly application server on Windows and Ubuntu, and add Wildfly to Eclipse.

Pre-requisites

Installation

Wildfly installation is very similar on Windows and Ubuntu, in short, the installation consists on download and unzip the server on a folder on your machine.

Windows

Go to Wildfly download page and download the file Java EE7 Full & Web Distribution on ZIP format. Unzip the downloaded .zip file in a directory of your choice.

Ubuntu

Similarly to Windows, go to Wildfly download page and download the Java EE7 Full & Web Distribution on TAR (tar.gz) format.

Go to the directory where you downloaded Wildfly, usually, it resides on /home/username/Downloads. Unzip the downloaded file:

cd /home/bruno/Downloads
sudo tar -xvf wildfly-8.2.0.Final.tar.gz

Move the unziped folder to /opt:

sudo mv wildfly-8.2.0.Final /opt

Now we need to grant permissions to another applications to access files from the folder where we installed Wildfly. The simpler way of doing that, is by the command below (not recommended on production environments for security reasons).

sudo chmod 777 -R /opt/wildfly-8.2.0.Final/

Add Wildfly to Eclipse

On your Eclipse menu, go to Window-> Show View -> Other. On the opened Window, choose the Servers view:

Show view Server on Eclipse

The new view will be shown on the bottom components bar on Eclipse. Click on No servers are available. Click this link to create a new server…:

Click this link to create a new server

On the opened Window, choose JBoss Community -> Wildfly 8.x and click Next:

Defining Wildfly 8.x as new server on Eclipse

On the next step, leave the fields with their already filled values and click on Next again:

Creating new Wildfly adapter on Eclipse

On this step, give your server a name and choose the directory where Wildfly was unzipped. Also, choose the Java 8 alternate JRE configured on your system. The configuration should look as the same as the image below:

Wildfly path and Java alternative runtime configuration

Click on Finish to finish Wildfly configuration on Eclipse. From now on, Wildfly will be shown on Servers view and you can already manage it from Eclipse, and deploy your web applications under development:

Wildfly on Servers view

Hope it helps. Cya!

3 thoughts on “Add Wildfly to Eclipse”

  1. Pingback: Install Wildfly - bgasparotto

  2. Pingback: Add datasource to Wildfly - bgasparotto

  3. Pingback: Add user to Wildfly - bgasparotto

Leave a Reply

Your email address will not be published. Required fields are marked *