|
|
|
|
|
by mike_hearn
742 days ago
|
|
Yes there have been some experiments with that. https://github.com/hydraulic-software/conveyor/discussions/6... Gluon has a version of GraalVM that can compile JavaFX apps. They do indeed start impressively fast and use much less memory. It's still a road somewhat less travelled though. Someone also tried it with Compose but it didn't get further than a demo repo and a few comments on our Discord. There are a few issues left to resolve: 1. General developer usability. 2. Native images aren't deterministic, which reduces the effectiveness of delta updates. 3. Native images can quickly get larger than the JVM+bytecode equivalent, as bytecode is quite compact compared to machine code. So you trade off startup time against download time. |
|