Relates :
|
|
Relates :
|
The default security policy for jar files in lib/ext is changing in JDK 9 to not grant all permisisons by default. See https://bugs.openjdk.java.net/browse/JDK-8040059 for more details. In order for the JavaFX runtime to continue to run when a security manager is present, we will need to add the following to the java.policy file in the JRE at build time: grant codeBase "file:${java.home}/lib/ext/jfxrt.jar" { permission java.security.AllPermission; };
|