SlideShare a Scribd company logo
JAVA CLIENTS AND
JAVAFX
THE DEFINITIVE GUIDE
Stephen Chin
JFrog Developer Relations
@steveonjava
@steveonjava
https://jfrog.com/shownotes/
HOW I PICTURED MYSELF DURING
THE APOCOLYPSE
@steveonjava
https://jfrog.com/shownotes/
HOW I ACTUALLY LOOK DURING THE
PANDEMIC
@steveonjava
https://jfrog.com/shownotes/
HISTORY OF JAVAFX
2006: F3 Form Follows Function
2008: JavaFX 1.0 Initial Release of JavaFX
2011: JavaFX 2.0 Java API (JavaFX Script Removed)
2012: JavaFX 2.2 JavaFX Bundled with JavaSE 7u6
2014: JavaFX 8 JDK Integration
2018: JDK 11 JavaFX Removed from the JDK
@steveonjava
https://jfrog.com/shownotes/
@steveonjava
https://jfrog.com/shownotes/
GLUON MOBILE
• JavaFX 11, 12, 13, and 14 builds
• SceneBuilder GUI Builder
• JavaFX on iOS and Android
@steveonjava
https://jfrog.com/shownotes/
JFrog.com/shownotes
● Today’s Slides
● The Video of this Talk
● T-Shirts raffle
http://bit.ly/JoziJavaDevOpsTools
@steveonjava
https://jfrog.com/shownotes/
@steveonjava
https://jfrog.com/shownotes/
JAVAFX USE CASES
@steveonjava
https://jfrog.com/shownotes/
MINT TRAINING AND RESOURCE MANAGEMENT
@steveonjava
https://jfrog.com/shownotes/
NASA DEEP SPACE TRAJECTORY EXPLORER
@steveonjava
https://jfrog.com/shownotes/
DEVOXX CONFERENCE MOBILE APPLICATION
@steveonjava
https://jfrog.com/shownotes/
SPACEFX GAME
@steveonjava
https://jfrog.com/shownotes/
JAVAFX 3D
@steveonjava
https://jfrog.com/shownotes/
MESH GEOMETRY (3D SHAPES)
■ Predefined shapes
■ Box
■ Cylinder
■ Sphere
■ User-defined shapes
■ Using TriangleMesh / MeshView
15
@steveonjava
https://jfrog.com/shownotes/
UV MAPPING TEXTURES TO SHAPES
16
Tip: A texture is a 2D image to
be mapped on a 3D surface
@steveonjava
https://jfrog.com/shownotes/
3D LIGHTS
■ Lights are nodes in the scene graph
■ PointLight
■ AmbientLight
■ Default light provided if no active lights
17
@steveonjava
https://jfrog.com/shownotes/
FXYZ
• Built-in shapes
• Lights, materials, camera
• FXyz 3D https://github.com/FXyz/FXyz
@steveonjava
https://jfrog.com/shownotes/
1. PACKAGE YOUR PLATFORM
@steveonjava
https://jfrog.com/shownotes/
PACKAGES KEEP GETTING LARGER
@steveonjava
https://jfrog.com/shownotes/
PACKAGING JAVAFX APPLICATIONS
• Works, but not recommended:
• ¨FAT JAR¨ – Package all your dependencies and run on command line
• Recommended:
• jlink – Requires modular apps
• jpackage – Available now in Java 14
• New options:
• Native image – Use Graal to create a native application
• OpenWebStart – Open source version of Web Start for modern JDKs by Karakun
@steveonjava
https://jfrog.com/shownotes/
CREATE STATIC IMAGES
https://www.gluonhq.co
m
@steveonjava
https://jfrog.com/shownotes/
2. TARGET MOBILE FIRST
@steveonjava
https://jfrog.com/shownotes/
MOBILE WEB TRAFFIC
0.7% 2.9%
6.1%
10.7%
16.2%
27.1%
35.1%
43.6%
50.3%
52.2%
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
Mobile Web Traffic
@steveonjava
https://jfrog.com/shownotes/
JAVAFX ON MOBILE
• Native-image from GraalVM
• OpenJDK 11+ & OpenJFX 11+
• Mac OS X, Linux, iOS, Android
• Gradle/Maven plugins
• IDE Support for IntelliJ, Eclipse, and NetBeans
• https://github.com/gluonhq/client-samples
@steveonjava
https://jfrog.com/shownotes/
3. BUILD FOR THE CLOUD
@steveonjava
https://jfrog.com/shownotes/
ETEOBOARD
@steveonjava
https://jfrog.com/shownotes/
JAVAFX ON THE CLOUD
• The Weather App
• Don’t reveal your credentials!
RemoteFunctionObject functionObject =
RemoteFunctionBuilder.create("weather")
.param("q", CITY)
.object();
@steveonjava
https://jfrog.com/shownotes/
JFROG FREE SUBSCRIPTION
https://jfrog.com/artifactory/start-
free/
@steveonjava
https://jfrog.com/shownotes/
FROM JAVAFX EXPERTS TO THE COMMUNITY
@steveonjava
https://jfrog.com/shownotes/
http://bit.ly/JoziJavaDevOpsTools
@steveonjava
https://jfrog.com/shownotes/
Q&A

More Related Content

What's hot (20)

PPTX
Salesforce developer
shanthi priya
 
PDF
GR8Conf 2015 - Spring Boot and Groovy. What more do you need?
Iván López Martín
 
PDF
Building a PWA with Ionic, Angular and Spring Boot - Jfokus 2017
Matt Raible
 
PDF
Testing Pyramid
Robert J Chatfield
 
PDF
When to (use / not use) React Native.
Bobby Schultz
 
KEY
Joys and Pains of Node.js in the Enterprise
Marc Fasel
 
PDF
Comparing JVM Web Frameworks - 33rd Degree
Matt Raible
 
PDF
Web Frameworks of the Future
elliando dias
 
ODP
iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
PPTX
6th Salesforce Developer Group - Bilbao
northspainsalesforcedevelopergroup
 
PDF
いろいろやってきた話 #supporterzcolab
@yuzutas0 Yokoyama
 
PPTX
Resful Trinity Code One - San Francisco
Ivan Junckes Filho
 
PDF
Introduce Angular2 & render & firebase flow
Caesar Chi
 
ODP
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
PDF
Experiences building apps with React Native @DomCode 2016
Adrian Philipp
 
PDF
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ranatchai Chernbamrung
 
PPTX
Phone gap
Ali Dany
 
PDF
Intro to PhoneGap
Jussi Pohjolainen
 
PDF
PhoneGap Talk @ Sencha Con 2010
alunny
 
PDF
카카오 공용준님의 "DevOps: on going pursuit of effectiveness"
Jay Park
 
Salesforce developer
shanthi priya
 
GR8Conf 2015 - Spring Boot and Groovy. What more do you need?
Iván López Martín
 
Building a PWA with Ionic, Angular and Spring Boot - Jfokus 2017
Matt Raible
 
Testing Pyramid
Robert J Chatfield
 
When to (use / not use) React Native.
Bobby Schultz
 
Joys and Pains of Node.js in the Enterprise
Marc Fasel
 
Comparing JVM Web Frameworks - 33rd Degree
Matt Raible
 
Web Frameworks of the Future
elliando dias
 
iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
6th Salesforce Developer Group - Bilbao
northspainsalesforcedevelopergroup
 
いろいろやってきた話 #supporterzcolab
@yuzutas0 Yokoyama
 
Resful Trinity Code One - San Francisco
Ivan Junckes Filho
 
Introduce Angular2 & render & firebase flow
Caesar Chi
 
iOS Developers Conference-iOS Automation with Cucumber, Appium and Saucelabs
Shashikant Jagtap
 
Experiences building apps with React Native @DomCode 2016
Adrian Philipp
 
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ranatchai Chernbamrung
 
Phone gap
Ali Dany
 
Intro to PhoneGap
Jussi Pohjolainen
 
PhoneGap Talk @ Sencha Con 2010
alunny
 
카카오 공용준님의 "DevOps: on going pursuit of effectiveness"
Jay Park
 

Similar to Java Clients and JavaFX: The Definitive Guide (20)

PPTX
Complete Solution for JavaFX Development - NexSoftSys
NexSoftsys
 
PDF
JavaFX 2 Rich Desktop Platform
Rajmahendra Hegde
 
PPTX
JavaFX on Mobile (by Johan Vos)
Stephen Chin
 
PDF
JavaFX 101
Richard Bair
 
PPTX
Introduction to JavaFX
Houari ZEGAI
 
PPT
What is java fx?
kanchanmahajan23
 
PDF
The Brainify App - JavaFx
Mohd Shamweel
 
PPT
Javafx
Tarun Soni
 
PPTX
Java fx
Apsara G
 
PPTX
OpenJFX on Android and Devices
Stephen Chin
 
DOCX
What is java fx?
kanchanmahajan23
 
PDF
JavaFX: A Rich Internet Application (RIA) Development Platform
Praveen Srivastava
 
PPTX
JavaFX 8 everywhere; write once run anywhere by Mohamed Taman
JavaDayUA
 
PDF
Java keynote preso
Artur Alves
 
PPT
JavaFX - Next Generation Java UI
Yoav Aharoni
 
ODP
Javafx
Rahul karan
 
PDF
JavaOne - The JavaFX Community and Ecosystem
Alexander Casall
 
PPTX
Introduction To JavaFX 2.0
Boulder Java User's Group
 
PPTX
JavaFX - Sketch Board to Production
Yoav Aharoni
 
PDF
Javafx tutorial
sloumaallagui1
 
Complete Solution for JavaFX Development - NexSoftSys
NexSoftsys
 
JavaFX 2 Rich Desktop Platform
Rajmahendra Hegde
 
JavaFX on Mobile (by Johan Vos)
Stephen Chin
 
JavaFX 101
Richard Bair
 
Introduction to JavaFX
Houari ZEGAI
 
What is java fx?
kanchanmahajan23
 
The Brainify App - JavaFx
Mohd Shamweel
 
Javafx
Tarun Soni
 
Java fx
Apsara G
 
OpenJFX on Android and Devices
Stephen Chin
 
What is java fx?
kanchanmahajan23
 
JavaFX: A Rich Internet Application (RIA) Development Platform
Praveen Srivastava
 
JavaFX 8 everywhere; write once run anywhere by Mohamed Taman
JavaDayUA
 
Java keynote preso
Artur Alves
 
JavaFX - Next Generation Java UI
Yoav Aharoni
 
Javafx
Rahul karan
 
JavaOne - The JavaFX Community and Ecosystem
Alexander Casall
 
Introduction To JavaFX 2.0
Boulder Java User's Group
 
JavaFX - Sketch Board to Production
Yoav Aharoni
 
Javafx tutorial
sloumaallagui1
 
Ad

More from Stephen Chin (20)

PPTX
DevOps Tools for Java Developers v2
Stephen Chin
 
PPTX
10 Ways Everyone Can Support the Java Community
Stephen Chin
 
PPTX
DevOps Tools for Java Developers
Stephen Chin
 
PPTX
RetroPi Handheld Raspberry Pi Gaming Console
Stephen Chin
 
PPTX
Confessions of a Former Agile Methodologist (JFrog Edition)
Stephen Chin
 
PPTX
Devoxx4Kids Lego Workshop
Stephen Chin
 
PPTX
Raspberry Pi with Java (JJUG)
Stephen Chin
 
PPTX
Confessions of a Former Agile Methodologist
Stephen Chin
 
PPTX
Internet of Things Magic Show
Stephen Chin
 
PPTX
Zombie Time - JSR 310 for the Undead
Stephen Chin
 
PPTX
JCrete Embedded Java Workshop
Stephen Chin
 
PPTX
Oracle IoT Kids Workshop
Stephen Chin
 
PPTX
Java on Raspberry Pi Lab
Stephen Chin
 
PDF
Java 8 for Tablets, Pis, and Legos
Stephen Chin
 
PDF
DukeScript
Stephen Chin
 
PPTX
Devoxx4Kids NAO Workshop
Stephen Chin
 
PPTX
Raspberry Pi Gaming 4 Kids (Devoxx4Kids)
Stephen Chin
 
PDF
Raspberry Pi Gaming 4 Kids - Dutch Version
Stephen Chin
 
PPTX
Raspberry pi gaming 4 kids
Stephen Chin
 
PDF
Mary Had a Little λ (QCon)
Stephen Chin
 
DevOps Tools for Java Developers v2
Stephen Chin
 
10 Ways Everyone Can Support the Java Community
Stephen Chin
 
DevOps Tools for Java Developers
Stephen Chin
 
RetroPi Handheld Raspberry Pi Gaming Console
Stephen Chin
 
Confessions of a Former Agile Methodologist (JFrog Edition)
Stephen Chin
 
Devoxx4Kids Lego Workshop
Stephen Chin
 
Raspberry Pi with Java (JJUG)
Stephen Chin
 
Confessions of a Former Agile Methodologist
Stephen Chin
 
Internet of Things Magic Show
Stephen Chin
 
Zombie Time - JSR 310 for the Undead
Stephen Chin
 
JCrete Embedded Java Workshop
Stephen Chin
 
Oracle IoT Kids Workshop
Stephen Chin
 
Java on Raspberry Pi Lab
Stephen Chin
 
Java 8 for Tablets, Pis, and Legos
Stephen Chin
 
DukeScript
Stephen Chin
 
Devoxx4Kids NAO Workshop
Stephen Chin
 
Raspberry Pi Gaming 4 Kids (Devoxx4Kids)
Stephen Chin
 
Raspberry Pi Gaming 4 Kids - Dutch Version
Stephen Chin
 
Raspberry pi gaming 4 kids
Stephen Chin
 
Mary Had a Little λ (QCon)
Stephen Chin
 
Ad

Recently uploaded (20)

PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Biography of Daniel Podor.pdf
Daniel Podor
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 

Java Clients and JavaFX: The Definitive Guide

Editor's Notes

  • #16: In JavaFX 3D there are three predefined shapes (Box, Cylinder, and Sphere). You can also create your own user-defined shapes, which consist of a mesh of triangles and a MeshView to be able to view the TriangleMesh.
  • #17: A technique known as UV mapping is used to map a 2D image onto a 3D shape.
  • #18: Now that we’ve explored the first feature in JavaFX 3D (mesh geometry), we’ll take a look at other two features mentioned earlier (cameras and lighting). Note to presenter: This demo may be seen by running the FX8-3DAPI project.