Do you want your ad here?

Contact us to get your ad seen by thousands of users every day!

[email protected]

JavaFX Links of April 2025

  • April 30, 2025
  • 985 Unique Views
  • 6 min read
Table of Contents
CoreSceneBuilderApplicationsComponents, Libraries, ToolsPodcasts, Videos, BooksTutorialsMiscellaneousJFX Central

Here is the overview of the JavaFX LinksOfTheMonth of April 2025. You can find the weekly lists on jfx-central.com. Did we miss anything? Is there anything you want to have included in one of the next overviews? Let us know via [email protected].

Core

  • Slides from the presentation "JavaFX 24 and Beyond" by Kevin Rushforth at JavaOne, March 18th, 2025.
  • ApiDoc of JavaFX 24 is available on APIdia, a growing collection of high-quality APIdocs, interlinked, without tracking.
  • Johan Vos on Mastodon: "_I'm still working on consolidation of JDK build with OpenJFX sources. Here is a post describing my progress and a suggestion. TLDR: I added a MARKDOWN_HASH04d3b60467c08e78fba0bc4a87592b9fMARKDOWNHASH configure option for the JDK. Key goal is not to make JDK build system harder to maintain. I'll be honest about this. It's hard work, requires diving into very different low-level things, and in the end, JavaFX developers won't see anything from this work. But I believe I have to do this, as it is vital to JavaFX."
    • And continues: "I've spent way too much time trying to find an elegant approach in generating the JavaFX shader files with the existing gradle build, and copy the results into the OpenJDK fork that can build OpenJFX. Unless someone else wants/can do this, I will move that part to the OpenJDK logic as well. Should be easier. ... I have to say that I'm slightly surprised that no other companies are helping me with this effort. I know at least 2 companies that distribute a JDK including OpenJFX mods. You would think they'd love this, but it's very silent."
  • The release notes for JavaFX 24.0.1 are being prepared in this pull request.
  • Chad Preisler shared some tips to distribute JavaFX apps:
    • "_One excellent way to distribute JavaFX applications is to use jlink to build custom images. You can build for Linux, Windows, and Mac all on one machine without having all the host operating systems. The package is small, and you don't need to install the JDK on each client._3
    • "My JavaFX application bundle, built for MacOS X with jlink is just 41MB. I built the and bundled the app on Linux and ran it on OS X. No need to install Java on every client with a jlink image. I used JDK 24 to build the application."
  • A tip by Wolfgang Weigend related to JEP 493: "_Add JavaFX 24 to your jdk-24.jdk image with cmd jlink --add-modules javafx.base,javafx.controls,... --output image and verify file release and the directory MARKDOWN_HASH456c8dcb2e4cb13faea8318519ab5263MARKDOWNHASH." (See the original message for the full command).
  • Message from Gluon: "Another CPU release for JavaFX! Today, we released JavaFX 24.0.1, JavaFX 17.0.15 and JavaFX 21.0.7. Get it from gluonhq.com. Thanks to the fantastic JavaFX community for the combined work."

SceneBuilder

  • SceneBuilder 24.0.0 is available. Highlights:
    • Scene Builder Kit is now published to Maven Central, making it easier for developers to integrate it into their software.
    • The Gluon controls, that are part of Scene Builder, were tightly coupled with Scene Builder Kit. Now those has been abstracted away into a pluggable component called Gluon Plugin.
    • Scene Builder has been updated for full compatibility with the Java Platform Module System (JPMS).
    • Logging to console is now enabled by default to make it easier to debug issues in Scene Builder.
    • Multiple fixes went into Accordion, DialogPane, TextField etc. to make Scene Builder more robust.

Applications

Components, Libraries, Tools

  • Here you can find a list of all the Visual Studio Code extensions created by Hidekazu Kubota: "I have registered all the VSCode extensions I created for JavaFX in the Open VSX repository. Now, it's possible to develop with JavaFX in VSCode-compatible editors like TheiaIDE."
  • JDeploy, a tool that helps you to create installers/updaters, announced: "A New Chapter for jDeploy: The Desktop App is Here" with:
    • From CLI to a First-Class Desktop Experience
    • No Dependencies, No Confusion
    • Deploy Direct to GitHub
    • First-Class Project Templates for Swing and JavaFX
    • And more...
  • A new library by Alan Decunto: "Language Manager is a JavaFX library that enables dynamic language switching at runtime, allowing you to update the application language without needing to refresh the scene.":
    • 🌍 Support for multiple languages using standard .properties files.
    • 🔄 Change language on the fly without reloading scenes.
    • 🔗 Automatic binding for Label, Button, TextField, and other controls using @FXML ids.
    • ⚙️ Custom annotations to ignore specific fields from auto-binding.
    • 📦 Lightweight and easy to integrate.
  • TabShell is a lightweight platform for building tab-based applications in JavaFX using the MVVM pattern.
    • Striking_Creme864 shared a video on Reddit: "For our project we needed users to be able to use a file chooser for file storages that may exist in the application, but not in the OS, such as Google Drive, FTP, etc. As a solution, such a custom file chooser was created, which recognizes 4 types of storage (floppy, CD, network and base). The file path is represented as a URI. Both modes (list/details) use VirtualFlow. File sorting is done by the table from details, even for the list mode (the table is not on the Scene). Storage implementations will be wrappers for OpenDAL, Commons FVS, etc."

Podcasts, Videos, Books

  • Live stream step-by-step in Korean - with CC 😉 - by 알클 ALOHA CLASS in which he creates an application with SceneBuilder and FXML: JavaFX - Controller.
  • Frank Delporte interviewed Gerrit Grunwald (aka hansolo) for the JavaFX In Action series: "Gerrit created many JavaFX libraries and blog posts. I wanted to talk with him about his work with JavaFX, but I also learned more about SVGs and how the garbage collectors in the JVM are working, thanks to the amazing visualizations he creates with ... JavaFX of course."
  • Some feedback on this interview:
    • By Matt Coley: "JavaFX has a perception problem. People will say 'Why not Compose?' before 'Why not FX?' even though Compose doesn't have a functional context-menu component for desktop yet. Compose just has a much better PR department even though for desktop its a much lesser offering. FX needs a PR boost. To elaborate on the Compose remark, you can have a WindowScope MenuBar, but it's only a wrapper that creates an un-styled Swing MenuBar. Additionally, generic compose context menus only allow text+onAction properties. For anything more the official docs tell you to use Swing's JPopupMenu. The point being, an unfinished product for desktop application is given much more public praise over JavaFX due to the perceived 'FX is dead' problem. That's the sorry state of things at the moment. I love FX and this makes my soul hurt."
    • By Catherine Edelveis: "Gerrit proves that Java is by no means a stranger in the world of UIs. I mean, all the cool libraries he's built make me even more enthusiastic about my aspirations with #JavaFX. And I can see that I've only touched a tip of the iceberg by now 😁."
    • YouTube comment by Michel Antony Barros Barrios: "Amazing, I remember have used several components of Gerrit's libraries to show data analytics about billing behavior in a project I work some years ago. His libraries are wonderful."
  • Live stream with Dashaun Carter and Catherine Edelveis: "Who said that desktop apps are dead? We prove them wrong! 🥊 We explore the world of rich and smart GUI apps that combine the powers of JavaFX and SpringBoot."

Tutorials

Miscellaneous

  • Very short but impressive video by PIE SPACE: "Check out my custom GUI made using Processing and JavaFX—specially designed to visualize real-time data from the Agni Flight Computer V2. You can find the full flight computer design along with the source code on my GitHub page."
  • Catherine Edelveis asks your advise: "Friends, does anyone know what is the best way of adding image urls to JavaFX CSS file?"

JFX Central

Do you want your ad here?

Contact us to get your ad seen by thousands of users every day!

[email protected]

Comments (0)

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

No comments yet. Be the first.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard