Using a Raspberry Pi to Deploy JavaFX Applications
Overview
Purpose
This tutorial covers how to configure a Raspberry Pi as a development platform for the JavaFX platform.
Time to Complete
Approximately 1 hour
Introduction
The Java platform is designed to run on different machines regardless of operating system. Computers comes in
different shapes and capabilities, and Java still runs on most of them. The Raspberry Pi is a small, affordable, and extensible
computer that is based on an ARM 11 processor, which is capable of running a Linux distribution.
This new, compact computer also runs Java with the new Java 8 ARM distribution, providing you with a small and portable device
on which to run your applications.
The Raspberry Pi has USB, Ethernet, audio, High-Definition Media Interface (HDML), and RCA composite video output, making it capable of running
applications that connect to the network, are displayed in a connected screen, and are controlled by using any USB
keyboard or mouse.
In this tutorial, you install the Java Development Kit (JDK) for Java Platform, Standard Edition Release 8 (Java SE 8) on the Raspberry Pi, and then you deploy, run, and stop JavaFX applications directly
and remotely in the Pi.
Software Requirements
Download and install the following software on your PC:
In order to boot, the Raspberry Pi requires a bootable Linux
image on an SD memory card. There is no hard drive for the
computer. Instead, the 4 GB card stores the image that the
computer runs when it is powered on. This SD memory card also acts
as the storage for other applications that are loaded onto the card.
Formatting the SD Memory Card with the SD Formatter Tool
Insert the SD card into your computer, or connect it to your computer by using an SD card peripheral.
You are now ready to boot the Raspberry Pi and install the JDK 8 distribution for Pi.
Setting Up the Raspberry Pi for Remote Access
To set up the Raspberry Pi for remote access, you configure Raspbian to allow SSH connections. To ensure that the
Raspberry Pi always has the same IP address, you configure the Raspberry Pi to use a static IP address.
Booting the Raspberry Pi and Configuring Raspbian Wheezy Linux
Note: If you are using a wireless connection, the information appears under the Wireless LAN adapter heading.
In a PuTTY window, enter sudo nano /etc/network/interfaces and then perform the following steps:
Comment out the iface eth0 inet dhcp line.
Below that, add the iface eth0 inet static line.
Use your network settings to add the IP, network, netmask, broadcast, and gateway addresses. For example: address 192.168.1.105 should be similar to the IPv4 address. network 192.168.1.0 should be the network prefix and zeroes. netmask 255.255.255.0 should match the subnet mask. broadcast 192.168.1.255 should be the network broadcast address. gateway 192.168.1.1 should match the default gateway.
Optional: Setting Up the Raspberry Pi to Use a Wireless Network with a Fixed IP Address
If you plan to use a wireless USB module with your Raspberry Pi, you need to edit the network interfaces file.
In a PuTTY window, enter sudo nano /etc/network/interfaces and then perform the following steps:
Comment out the following lines:
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_spplicant/wpa_supplicant.conf
Below that, add the following lines:
auto wlan0
iface wlan0 inet static
Use your network settings to add the IP address,
network mask, and gateway address. For example: address 192.168.1.105
netmask 255.255.255.0
gateway 192.168.1.1
Add the network SSID and passkey for your network in
double quotation marks. For example: wpa-ssid "mynetwork"
wpa-psk "cants@y"
The Raspberry Pi supports only two USB connections. To use the USB Wifi module, unplug the USB mouse, the USB
keyboard, and the Ethernet cable, and then plug in the USB Wifi module.
To use JavaFX applications, you need a mouse and
preferably a keyboard. You can use a USB hub to connect everything to the Raspberry Pi.
Raspbian comes with an installed version of Java. To install a new version of Java with the full JDK,
you transfer the ARMV6/7VFP gzip distribution to the Pi by using PSFTP. After the gzip is on the Pi,
you unzip it and set the required environment variables.
Transferring JDK 8 to the Raspberry Pi by Using PSFTP
Launch the PSFTP tool and then perform the following steps:
Enter open 192.168.1.105.
Enter pi as the login name and raspberry as the password.
Using visudo, you edit the sudoers file safely. After the editor is closed, the file is validated. If any validation errors are in the file, the sudoers file is not modified.
Verifying the JDK 8 Installation
Enter sudo reboot to restart the Raspberry Pi. Wait a couple of seconds to let the Raspberry Pi reboot.
To develop JavaFX applications faster, you use your desktop computer with the NetBeans IDE. The JavaFX projects
generate JAR files that can be deployed to any device that can run JavaFX. In this section, you create two applications
with NetBeans and move the resulting JAR files to upload them later to the Raspberry Pi.
The NetBeans IDE includes sample applications that you can create and modify to showcase Java technologies.
In this section, you create a JavaFX clock application by using one of these templates.
JavaFX applications are displayed on the main screen of the Raspberry Pi, but you can start and stop them from a remote console, which is useful when debugging or when the application cannot be stopped. In some cases, you can stop applications by pressing Ctrl + C. If the application doesn't stop, use the method outlined in this section.
On your Desktop PC, open a PuTTY window and log in to the Raspberry as the user pi with the password raspberry.
Enter ps ax | grep java and locate the process ID of the BasicFX.jar application.