You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running subzero on Wildlfy with JDK 11 I get this error :
java.lang.ClassNotFoundException: sun.reflect.ReflectionFactory from [Module "deployment.AofWeb.war" from Service Module Loader]
at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:255)
at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:410)
at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)
at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116)
at java.base/java.lang.Class.forName0(Native Method)
at java.base/java.lang.Class.forName(Class.java:315)
at deployment.AofWeb.war//info.jerrinot.subzero.relocated.org.objenesis.instantiator.sun.SunReflectionFactoryHelper.getReflectionFactoryClass(SunReflectionFactoryHelper.java:54)
The text was updated successfully, but these errors were encountered:
Still I'm not sure using sun.reflect.ReflectionFactory is a good idea as starting from jdk 9 classes in the sun.* package should not be used :
The sun.* packages are not part of the supported, public interface.
A Java program that directly calls into sun.* packages is not guaranteed to work on all Java-compatible platforms. In fact, such a program is not guaranteed to work even in future versions on the same platform.
Running subzero on Wildlfy with JDK 11 I get this error :
The text was updated successfully, but these errors were encountered: