JavaFX with Gradle, Eclipse and, Scene Builder on OpenJDK11: Project Setup

By Adam McQuistan in Java  07/27/2019 Comment

JavaFX with Gradle Eclipse SceneBuilder OpenJDK Project Setup

Introduction

The web is a preferred choice for software due to the ubiquity and accessibility of browsers but, exceptions exist necessitating the need for a quality desktop app platform such as the need to lockdown data to a few geographically close computers or desire to restrict internet connectivity from a particular app. Surprisingly, this can be common for high-tech fields like science and medicine which rely on the exceptional Java platform and JavaFX framework for quality desktop software.

In this series I demonstrate how to build a multiscreen JavaFX desktop app which generates and displays random numbers from scratch (your welcome in advance lottery playing community). I guide the reader through the minutia of setting up a development environment using popular, production grade, tools such as Eclipse, Gradle, and Gluon's Scene Builder followed by a gentle scratch at the surface of the JavaFX framework.

The code for the Random Number demo app is hosted on GitHub for following along and experimentation.

Series Contents

Development Tools

In this section I want to help get the reader off on the right foot so he or she is able to follow along with the example or even just get going hacking away on their own Java / JavaFX project.

Installing OpenJDK 11+

For this project I will be using OpenJDK 11. So if you haven't already done so please download it from the OpenJDK website and follow the install instructions described in my earlier article, High-Level Introduction to Java for Developers.

Installing Eclipse

I will also be using the Eclipse IDE for this article so if you don't have that please install it from the Eclipse website and follow their install instructions.

Installing Scene Builder and Configuring Eclipse for JavaFX Development

Before diving into project setup I will also show how to install the JavaFX Eclipse plugin as well as Gluon's awesome Scene Builder app then configure it in Eclipse.

Start by downloading and installing Gluon's Scene Builder tool. Make note of where you choose to install SceneBuilder at as this will be needed shortly.

Follow that up by opening Eclipse, clicking the help menu then the Eclipse Marketplace submenu.

In the search field type javafx and a plugin named e(fx)clipse x.x.x will be returned. Install it and let Eclipse restart.

After Eclipse has restarted open the preferences menu dialog at Window > Preferences then select the JavaFX section from the menu on the left. It is here that you need to browse to the SceneBuilder executable previously installed so Eclipse will use it to open FXML files. Don't worry about the JavaFX SDK bit, that can be left empty. Just select Apply and Close.

Project Setup

To make my life simpler and give the reader a realistic and quality example I will utilize the Gradle build system and project structure.

To start I create a new project in Eclipse by clicking file > New > Project

In the resulting dialog expand Gradle and select Gradle Project

Name the project randomnumber and click finish

Afterwards I pop open the build.gradle file and make a few changes specific for a JavaFX project like specifying the java application and javafx plugins, switch the repositories to point to Maven Central then configure the JavaFX version to use version 12 along with including the javafx.controls module. I finish with pointing the mainClassName field to a class I'll add shortly named AppLauncher. The updated build.gradle file is shown below.

plugins {
    id 'eclipse'
    id 'application'
    id 'org.openjfx.javafxplugin' version '0.0.7'
}

repositories {
    mavenCentral()
}

sourceCompatibility = 11
targetCompatibility = 11

javafx {
    version = "12"
    modules = [ 'javafx.controls' ]
}

dependencies {
    testImplementation 'junit:junit:4.12'
}

mainClassName = "com.thecodinginterface.randomnumber.AppLauncher"

By default a package named randomnumber was created in the project. As you can see above I have referenced the AppLauncher class from another package named com.thecodinginterface.randomnumber (which is more consistent with the reverse domain name common to idiomatic Java) so, I will need to introduce this new package by expanding the src/main/java source in the Project Explorer, right clicking and selecting New > Package and naming it com.thecodinginterface.randomnumber. The randomnumber package and it's contents should also be deleted from src/test/java as well.

Next I add the AppLauncher and RandomNumberApp Java classes source files to the new package. I start with right clicking the com.thecodinginterface.randomnumber package, selecting New > Class then name it RandomNumberApp and check the box to include the main method then click finish.

Inside the newly added class I update it to extend the abstract Application class from the JavaFX framework then add some code that I lifted from the JavaFX community site's Hello World example from GitHub. I highly recommend all readers to have a look at the linked repo and the OpenJFX community site.

Don't worry about the errors being displayed in Eclipse, I will address those soon.

Moving on I add the AppLauncher class file in the same package.

The code inside AppLauncher#main simply calls the static method of RandomNumberApp#main passing it args parameter.

// AppLauncher.java

package com.thecodinginterface.randomnumber;

public class AppLauncher {
    public static void main(String[] args) {
        RandomNumberApp.main(args);
    }
}

Alright, now I can clear up those Eclipse warnings and errors by right clicking on the randomnumber project, opening the Gradle submenu and clicking Refresh Gradle Project.

At this point the errors and warning go away. YAY!!!

To give the project a test run I need to configure the Gradle run task by right clicking the randomnumber project then going down to Run As > Run Configurations to open the config dialog. In the dialog I select Gradle Project on the left, click the plus sign to create a new run configuration, name it gradle-run, then type run in the Gradle Tasks text area and select the randomnumber project as the workspace. Click apply then Run.

A JavaFX application window will now open as shown below.

Demo App's Requirements

This demo application will generate a random number within lower and upper bounds specified as two user inputs fields. The user will then click a button to trigger the app to generate and display a number plus save it in a collection of randomly generated numbers. The user may choose to view their previously generated numbers as well as the lower and upper boundaries entered.

Below is a mockup of the number generator screen.

Random Number Generator View

--------------------------------------------
| New Number | My Numbers                  |
|------------------------------------------|
|                                          |
|             ################             |
|                                          |
|         Random Number Generator          |
|               -------------              |
|         Min   |           |              |
|               -------------              |
|               -------------              |
|         Max   |           |              |
|               -------------              |
|                                          |
|               ____________               |
|              |            |              |
|              |  Generate  |              |
|              |____________|              |
|                                          |
|                                          |
--------------------------------------------

Numbers List Screen

--------------------------------------------
| New Number | My Numbers                  |
|------------------------------------------|
|                                          |
|               Random Numbers             |
|     --------------------------------     |
|     | Created | Number | Min | Max |     |
|     --------------------------------     |
|     |         |        |     |     |     |
|     |         |        |     |     |     |
|     |         |        |     |     |     |
|     |         |        |     |     |     |
|     |         |        |     |     |     |
|     --------------------------------     |
|                                          |
|                                          |
--------------------------------------------

Resources to Learn More About Java and JavaFX

Conclusion

In this introductory article in a series on building desktop applications using Java (OpenJDK 11) along with JavaFX I have covered how to setup a development environment utilizing Gradle, Eclipse and, Gluon's SceneBuilder as well as described the Random Number demo application I will be building in this series. In the next article I will be getting into how to build the application using the JavaFX framework.

As always, thanks for reading and don't be shy about commenting or critiquing below.

Share with friends and colleagues

[[ likes ]] likes

Navigation

Community favorites for Java

theCodingInterface