JWT-FX is multi tabbed jwt debugger tool I have written in JavaFX 11. Source code can be found on github project here : https://github.com/muminc/jwt-fx
Screenshot
Java, JavaScript and other technology related stuff
JWT-FX is multi tabbed jwt debugger tool I have written in JavaFX 11. Source code can be found on github project here : https://github.com/muminc/jwt-fx
Screenshot
In JavaFX 9, a new rasterizer was added but not made the default.
MarlinFX seems quite impressive according to this post:
https://twitter.com/chriswhocodes/status/803367694842167300
To enable MarlinFX on JavaFX 9 add this system property
to enable verbose logging add this system property
The JavaFX undecorated window gives you a blank canvas, giving freedom to how your window looks without having to accept the default Windows title bar and buttons such as the Minimize, Maximise and Close buttons.
On Windows, the disadvantage of the Undecorated stage is if you click on the icon on the Taskbar, you don’t get the minimise behaviour compared to other Windows app. Likewise, if you use the keyboard shortcut “Windows Key + M” all your apps except for the Undecorated JavaFX app will minimise.
This can be quite fustrating.
There is a stackoverflow post on this issue:
http://stackoverflow.com/questions/26972683/javafx-minimizing-undecorated-stage
This answer from StackOverflow post seems to work
It uses the JNA library add the WS_MINIMIZEBOX style to the existing Window.
Dependencies required if your using gradle are
Java 9
Java 9 modularity adds stronger encapsulation, if you attempt to run the sample program under Java 9, you’ll get IllegalAccessError as the com.sun.glass.ui package is not visible to unnamed modules
To make the example run on Java 9 you will need to add this additional VM Option