Skip to content

Instantly share code, notes, and snippets.

@lprimak
Created September 19, 2022 01:43
Show Gist options
  • Save lprimak/1aad4199cccafad3efbab8623844dc09 to your computer and use it in GitHub Desktop.
Save lprimak/1aad4199cccafad3efbab8623844dc09 to your computer and use it in GitHub Desktop.
calling private methods w/MethodHandles
var lookup = MethodHandles.privateLookupIn(EagerBeansWebListener.class, MethodHandles.lookup());
var mh = lookup.findStatic(EagerBeansWebListener.class, "disable", MethodType.methodType(void.class));
mh.invokeExact();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment