SlideShare a Scribd company logo
JAVA CLIENTS AND
JAVAFX
THE DEFINITIVE GUIDE
Stephen Chin
JFrog Developer Relations
Johan Vos
Gluon Mobile Java CEO
@steveonjava @johanvos
@steveonjava
https://jfrog.com/shownotes/
@johanvos@johanvos
HOW I PICTURED MYSELF DURING
THE APOCOLYPSE
@steveonjava
https://jfrog.com/shownotes/
@johanvos@johanvos
HOW I ACTUALLY LOOK DURING THE
PANDEMIC
@steveonjava
https://jfrog.com/shownotes/
@johanvos
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/
@johanvos@johanvos
@steveonjava
https://jfrog.com/shownotes/
@johanvos
GLUON MOBILE
• JavaFX 11, 12, 13, and 14 builds
• SceneBuilder GUI Builder
• JavaFX on iOS and Android
@steveonjava
https://jfrog.com/shownotes/
@johanvos
JFrog.com/shownotes
● Today’s Slides
● The Video of this Talk
● Nintendo Switch Raffle
● 5 T-Shirts for LJC members
Bit.ly/LJCJFrog
@steveonjava
https://jfrog.com/shownotes/
@johanvos
@steveonjava
https://jfrog.com/shownotes/
@johanvos
JAVAFX USE CASES
@steveonjava
https://jfrog.com/shownotes/
@johanvos
MINT TRAINING AND RESOURCE MANAGEMENT
@steveonjava
https://jfrog.com/shownotes/
@johanvos
NASA DEEP SPACE TRAJECTORY EXPLORER
@steveonjava
https://jfrog.com/shownotes/
@johanvos@johanvos
DEVOXX CONFERENCE MOBILE APPLICATION
@steveonjava
https://jfrog.com/shownotes/
@johanvos
SPACEFX GAME
@steveonjava
https://jfrog.com/shownotes/
@johanvos
JAVAFX 3D
@steveonjava
https://jfrog.com/shownotes/
@johanvos
MESH GEOMETRY (3D SHAPES)
■ Predefined shapes
■ Box
■ Cylinder
■ Sphere
■ User-defined shapes
■ Using TriangleMesh / MeshView
15
@steveonjava
https://jfrog.com/shownotes/
@johanvos
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/
@johanvos
3D LIGHTS
■ Lights are nodes in the scene graph
■ PointLight
■ AmbientLight
■ Default light provided if no active lights
17
@steveonjava
https://jfrog.com/shownotes/
@johanvos
FXYZ
• Built-in shapes
• Lights, materials, camera
• FXyz 3D https://github.com/FXyz/FXyz
@steveonjava
https://jfrog.com/shownotes/
@johanvos
1. PACKAGE YOUR PLATFORM
@steveonjava
https://jfrog.com/shownotes/
@johanvos
PACKAGES KEEP GETTING LARGER
@steveonjava
https://jfrog.com/shownotes/
@johanvos
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/
@johanvos
CREATE STATIC IMAGES
https://www.gluonhq.co
m
@steveonjava
https://jfrog.com/shownotes/
@johanvos
2. TARGET MOBILE FIRST
@steveonjava
https://jfrog.com/shownotes/
@johanvos
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/
@johanvos
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/
@johanvos
3. BUILD FOR THE CLOUD
@steveonjava
https://jfrog.com/shownotes/
@johanvosETEOBOARD
@steveonjava
https://jfrog.com/shownotes/
@johanvos
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/
@johanvos
FROM JAVAFX EXPERTS TO THE COMMUNITY
@steveonjava
https://jfrog.com/shownotes/
@johanvos
HOW CAN YOU INFLUENCE THE ROADMAP
• Contribute
• OpenJFX code: https://github.com/openjdk/jfx
• Project leads: Kevin Rushforth (Oracle) and Johan Vos (Gluon)
• 100% open source, clear development rules (Reviewer, Committer)
Getting started:
• https://openjfx.io
• Mobile samples: https://github.com/gluonhq/client-samples
@steveonjava
https://jfrog.com/shownotes/
@johanvos@johanvos
Bit.ly/LJCJFrog
@steveonjava
https://jfrog.com/shownotes/
@johanvos@johanvos
Q&A
Ad

Recommended

PPTX
Java Clients and JavaFX: The Definitive Guide
Stephen Chin
 
PDF
Automating all the wrong things - You Gotta Love Frontend Keynote
Christian Heilmann
 
PDF
Upgrading JavaScript to ES6 and using TypeScript as a shortcut
Christian Heilmann
 
PDF
What is FED
Sam Lee
 
PDF
Firefox os how large open source project works
Fred Lin
 
PDF
Salesforce developer
shanthi priya
 
ODP
Joeffice, day 2: the framework
Anthony Goubard
 
PDF
WebGeek AppNimbus (Nikko Bautista)
WebGeek Philippines
 
PPTX
Salesforce developer
shanthi priya
 
PDF
Javaland 2014 / GWT architectures and lessons learned
pgt technology scouting GmbH
 
PDF
GR8Conf 2015 - Spring Boot and Groovy. What more do you need?
Iván López Martín
 
PDF
React native - What, Why, How?
Teerasej Jiraphatchandej
 
PPTX
6th Salesforce Developer Group - Bilbao
northspainsalesforcedevelopergroup
 
PPTX
Games, Develop & Html5 for BlackBerry PlayBook
Sergio Brito
 
PDF
Starters with Django
BeDjango
 
KEY
Joys and Pains of Node.js in the Enterprise
Marc Fasel
 
PDF
DevOps Note 20120224
Hirokazu MORIKAWA
 
PDF
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ranatchai Chernbamrung
 
PPTX
Flash 2 dev bbp-laybook
Sergio Brito
 
PDF
Power of React Native
Murugan Durai
 
PDF
Use groovy & grails in your spring boot projects
Fátima Casaú Pérez
 
PPTX
Grails Spring Boot
TO THE NEW | Technology
 
PDF
TDC2016POA | Trilha Web - Garanta a segurança de suas aplicações Web com Keyc...
tdc-globalcode
 
PDF
Spring IO '15 - Developing microservices, Spring Boot or Grails?
Fátima Casaú Pérez
 
PDF
NodeConfLondon - Making ES6 happen with ChakraCore and Node
Christian Heilmann
 
PDF
CocoaHeads Paris iBeacon par Clément Sauvage
CocoaHeads France
 
PDF
Breaking News and Breaking Software by Andy Hume
SyncConf
 
PDF
Intro to PhoneGap
Jussi Pohjolainen
 
PDF
Java Desktop 2019
Hendrik Ebbers
 
PDF
JavaFX 2 Rich Desktop Platform
Rajmahendra Hegde
 

More Related Content

What's hot (20)

PPTX
Salesforce developer
shanthi priya
 
PDF
Javaland 2014 / GWT architectures and lessons learned
pgt technology scouting GmbH
 
PDF
GR8Conf 2015 - Spring Boot and Groovy. What more do you need?
Iván López Martín
 
PDF
React native - What, Why, How?
Teerasej Jiraphatchandej
 
PPTX
6th Salesforce Developer Group - Bilbao
northspainsalesforcedevelopergroup
 
PPTX
Games, Develop & Html5 for BlackBerry PlayBook
Sergio Brito
 
PDF
Starters with Django
BeDjango
 
KEY
Joys and Pains of Node.js in the Enterprise
Marc Fasel
 
PDF
DevOps Note 20120224
Hirokazu MORIKAWA
 
PDF
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ranatchai Chernbamrung
 
PPTX
Flash 2 dev bbp-laybook
Sergio Brito
 
PDF
Power of React Native
Murugan Durai
 
PDF
Use groovy & grails in your spring boot projects
Fátima Casaú Pérez
 
PPTX
Grails Spring Boot
TO THE NEW | Technology
 
PDF
TDC2016POA | Trilha Web - Garanta a segurança de suas aplicações Web com Keyc...
tdc-globalcode
 
PDF
Spring IO '15 - Developing microservices, Spring Boot or Grails?
Fátima Casaú Pérez
 
PDF
NodeConfLondon - Making ES6 happen with ChakraCore and Node
Christian Heilmann
 
PDF
CocoaHeads Paris iBeacon par Clément Sauvage
CocoaHeads France
 
PDF
Breaking News and Breaking Software by Andy Hume
SyncConf
 
PDF
Intro to PhoneGap
Jussi Pohjolainen
 
Salesforce developer
shanthi priya
 
Javaland 2014 / GWT architectures and lessons learned
pgt technology scouting GmbH
 
GR8Conf 2015 - Spring Boot and Groovy. What more do you need?
Iván López Martín
 
React native - What, Why, How?
Teerasej Jiraphatchandej
 
6th Salesforce Developer Group - Bilbao
northspainsalesforcedevelopergroup
 
Games, Develop & Html5 for BlackBerry PlayBook
Sergio Brito
 
Starters with Django
BeDjango
 
Joys and Pains of Node.js in the Enterprise
Marc Fasel
 
DevOps Note 20120224
Hirokazu MORIKAWA
 
React Native "A Bad Idea Or A Game Changer" at Code Mania 101
Ranatchai Chernbamrung
 
Flash 2 dev bbp-laybook
Sergio Brito
 
Power of React Native
Murugan Durai
 
Use groovy & grails in your spring boot projects
Fátima Casaú Pérez
 
Grails Spring Boot
TO THE NEW | Technology
 
TDC2016POA | Trilha Web - Garanta a segurança de suas aplicações Web com Keyc...
tdc-globalcode
 
Spring IO '15 - Developing microservices, Spring Boot or Grails?
Fátima Casaú Pérez
 
NodeConfLondon - Making ES6 happen with ChakraCore and Node
Christian Heilmann
 
CocoaHeads Paris iBeacon par Clément Sauvage
CocoaHeads France
 
Breaking News and Breaking Software by Andy Hume
SyncConf
 
Intro to PhoneGap
Jussi Pohjolainen
 

Similar to Java Clients and JavaFX - Presented to LJC (20)

PDF
Java Desktop 2019
Hendrik Ebbers
 
PDF
JavaFX 2 Rich Desktop Platform
Rajmahendra Hegde
 
PDF
HJUG JavaOne 2k14 Wrapup
James Velasco
 
PDF
Java pode ser_hipster
Antonio Lazaro Carvalho Borges
 
PDF
Spring aop mvc_by_sekhar_javabynatara_j
Satya Johnny
 
PDF
Spring aop mvc_by_sekhar_javabynatara_j
Satya Johnny
 
PDF
Primefaces mobile users_guide_0_9
ednilsoncampos
 
PDF
Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...
MarcinStachniuk
 
PDF
GlassFish Embedded API
Eduardo Pelegri-Llopart
 
PDF
DevOps Patterns & Antipatterns for Continuous Software Updates @ NADOG April ...
Baruch Sadogursky
 
PDF
Ionic adventures - Hybrid Mobile App Development rocks
Juarez Filho
 
PPT
"Native" Apps with APEX and PhoneGap
Christian Rokitta
 
ODP
Introduction to PhoneGap
Quang Minh Dao
 
ODP
Introduction to PhoneGap
Quang Minh Dao
 
ODP
Phonegap
Quang Minh Dao
 
PDF
Cdi - why still not buddy?
Leopoldo Barreiro
 
PDF
Introduction to JavaFX
Mindfire Solutions
 
PDF
NLOUG 2018 - Future of JSF and ADF
Daniel Merchán García
 
PDF
Migrate Early, Migrate Often: JDK release cadence strategies
DanHeidinga
 
PDF
Introduction to PhoneGap
RameshNair6
 
Java Desktop 2019
Hendrik Ebbers
 
JavaFX 2 Rich Desktop Platform
Rajmahendra Hegde
 
HJUG JavaOne 2k14 Wrapup
James Velasco
 
Java pode ser_hipster
Antonio Lazaro Carvalho Borges
 
Spring aop mvc_by_sekhar_javabynatara_j
Satya Johnny
 
Spring aop mvc_by_sekhar_javabynatara_j
Satya Johnny
 
Primefaces mobile users_guide_0_9
ednilsoncampos
 
Java Web Start czyli jak żyć z tą dziwną technologią? & Continuous Delivery w...
MarcinStachniuk
 
GlassFish Embedded API
Eduardo Pelegri-Llopart
 
DevOps Patterns & Antipatterns for Continuous Software Updates @ NADOG April ...
Baruch Sadogursky
 
Ionic adventures - Hybrid Mobile App Development rocks
Juarez Filho
 
"Native" Apps with APEX and PhoneGap
Christian Rokitta
 
Introduction to PhoneGap
Quang Minh Dao
 
Introduction to PhoneGap
Quang Minh Dao
 
Phonegap
Quang Minh Dao
 
Cdi - why still not buddy?
Leopoldo Barreiro
 
Introduction to JavaFX
Mindfire Solutions
 
NLOUG 2018 - Future of JSF and ADF
Daniel Merchán García
 
Migrate Early, Migrate Often: JDK release cadence strategies
DanHeidinga
 
Introduction to PhoneGap
RameshNair6
 
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
JavaFX on Mobile (by Johan Vos)
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
OpenJFX on Android and Devices
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
 
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
 
JavaFX on Mobile (by Johan Vos)
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
 
OpenJFX on Android and Devices
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
 
Ad

Recently uploaded (20)

PDF
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
PDF
The Growing Value and Application of FME & GenAI
Safe Software
 
PPTX
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
PDF
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
PDF
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
PDF
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
PDF
2025_06_18 - OpenMetadata Community Meeting.pdf
OpenMetadata
 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
PDF
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
PDF
Mastering AI Workflows with FME by Mark Döring
Safe Software
 
PDF
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
revolcs10
 
PDF
Agentic AI for Developers and Data Scientists Build an AI Agent in 10 Lines o...
All Things Open
 
PDF
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
PDF
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
PDF
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
PDF
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
PDF
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
PDF
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
PDF
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
PDF
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
The Growing Value and Application of FME & GenAI
Safe Software
 
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
"Database isolation: how we deal with hundreds of direct connections to the d...
Fwdays
 
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
Connecting Data and Intelligence: The Role of FME in Machine Learning
Safe Software
 
2025_06_18 - OpenMetadata Community Meeting.pdf
OpenMetadata
 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
 
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
Mastering AI Workflows with FME by Mark Döring
Safe Software
 
ReSTIR [DI]: Spatiotemporal reservoir resampling for real-time ray tracing ...
revolcs10
 
Agentic AI for Developers and Data Scientists Build an AI Agent in 10 Lines o...
All Things Open
 
AI Agents and FME: A How-to Guide on Generating Synthetic Metadata
Safe Software
 
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
WebdriverIO & JavaScript: The Perfect Duo for Web Automation
digitaljignect
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
"Scaling in space and time with Temporal", Andriy Lupa.pdf
Fwdays
 

Java Clients and JavaFX - Presented to LJC

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.