Skip to content

Instantly share code, notes, and snippets.

@ThangLeQuoc
Created October 18, 2018 07:10
Show Gist options
  • Save ThangLeQuoc/5f223146678a9090dca79b7168103dd5 to your computer and use it in GitHub Desktop.
Save ThangLeQuoc/5f223146678a9090dca79b7168103dd5 to your computer and use it in GitHub Desktop.
Java Reflection
public void doReflectionMagic() {
Method method = ldapUserCache.getClass().getDeclaredMethod("initActiveUsers", Long.TYPE);
method.setAccessible(true);
method.invoke(ldapUserCache, 3600L);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment