Community
Participate
Working Groups
Attempting to use a nested static class in a Get element in jetty.xml yields a ClassNotFoundException. For instance, specifying: <Get class="java.lang.Character.UnicodeBlock" name="LATIN_EXTENDED_ADDITIONAL"/> in a jetty.xml file will throw a java.lang.ClassNotFoundException: java.lang.Character.UnicodeBlock.
Use <Get class="java.lang.Character$UnicodeBlock" name="LATIN_EXTENDED_ADDITIONAL"/> cheers
Ah, of course. Thank you.