Equinox Class Loader Column

At the equinox-based application deadlock, a built-in class loader sometimes appears. I found a question in the Equinox bug-tracker that describes my problem. But the fix is ​​not complete for Java 6 or lower, and resolution for Java 6 is just a workaround: adding two VM parameters

-XX:+UnlockDiagnosticVMOptions -XX:+UnsyncloadClass 

There is also a Sun bug for native classloader() , and the fix also seems to be incomplete. Thus, a workaround is the only solution at the moment.

So the question is: does anyone have problems or issues related to this workaround? Thanks in advance.

+4
source share
2 answers

After several days of testing, no problems were found with this workaround. So this solution solved the problem.

+1
source

Using these options using the JVM with Sun (Oracle), running Eclipse, for many years. There was never a problem that could be traced to them.

0
source

Source: https://habr.com/ru/post/1398584/


All Articles