If I start my app without invoking the security manager to app runs without error, but when I start app invoking java security manager I receive the following error code. I'm operating in windows10 environment, eclipse 2020-09 (4.17.0), and JavaSE-14, modular programming. I simply don't understand the permission needed in order to dismiss this error message: access denied ("java.util.PropertyPermission" "javafx.verbose" "read") If the answer is simply that I need to grant the above permission, then where and who do I grant this permission? Any nudge in the right direction will be greatly appreciated.
The launch code/batch file:
@echo off
set JLINK_VM_OPTIONS=
set DIR=%~dp0
"%DIR%\java" -Djava.security.manager -Djava.security.policy==./jaasPolicy.policy -Djava.security.auth.login.config==./jaasConfig.config %JLINK_VM_OPTIONS%
-m fm.core/fm.core.main.Driver %*
Full error message:
Exception in thread "main" java.lang.ExceptionInInitializerError
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at java.base/sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:1051)
Caused by: java.security.AccessControlException: access denied ("java.util.PropertyPermission" "javafx.verbose" "read")
at java.base/java.security.AccessControlContext.checkPermission(AccessControlContext.java:472)
at java.base/java.security.AccessController.checkPermission(AccessController.java:1036)
at java.base/java.lang.SecurityManager.checkPermission(SecurityManager.java:408)
at java.base/java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1152)
at java.base/java.lang.System.getProperty(System.java:847)
at java.base/java.lang.Boolean.getBoolean(Boolean.java:266)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$static$0(LauncherImpl.java:122)
at java.base/java.security.AccessController.doPrivileged(AccessController.java:312)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.<clinit>(LauncherImpl.java:121)
... 5 more