When I run v9.0.1 which Java 24 I get a bunch of (deprecation) warnings:
$ java -jar /Users/cr/Downloads/webin-cli-9.0.1.jar -version
WARNING: A restricted method in java.lang.System has been called
WARNING: java.lang.System::loadLibrary has been called by org.fusesource.hawtjni.runtime.Library in an unnamed module (jar:file:/Users/cr/Downloads/webin-cli-9.0.1.jar!/BOOT-INF/lib/jansi-1.18.jar!/)
WARNING: Use --enable-native-access=ALL-UNNAMED to avoid a warning for callers in this module
WARNING: Restricted methods will be blocked in a future release unless native access is enabled
9.0.1
$ which java
/Users/cr/.local/share/mise/installs/java/24.0.2/bin/java
A workaround seems to be to add the java arg --enable-native-access=ALL-UNNAMED:
java --enable-native-access=ALL-UNNAMED -jar /Users/cr/Downloads/webin-cli-9.0.1.jar -version
This arg seems to be backwards compatible, so one can just add it and there won't be any issues even if one isn't on java 24.