How to get a field with Reflection in Java

Featured image for sharing metadata for article

Today, while looking into server-less Wiremock, I wanted to retrieve a (private) field from a class.

Interestingly, most of the Stack Overflow posts I found weren't super helpful, but this reply from Lino on StackOverflow helped me track it down:

WireMockServer server = new WireMockServer();
try {
  Field field = WireMockServer.class.getDeclaredField("stubRequestHandler");
  field.setAccessible(true);
  handler = (StubRequestHandler) field.get(server);
  // yay!
} catch (NoSuchFieldException | IllegalAccessException e) {
  throw new RuntimeException(e);
}

Written by Jamie Tanna's profile image Jamie Tanna on , and last updated on .

Content for this article is shared under the terms of the Creative Commons Attribution Non Commercial Share Alike 4.0 International, and code is shared under the Apache License 2.0.

#blogumentation #java.

This post was filed under articles.

Interactions with this post

Interactions with this post

Below you can find the interactions that this page has had using WebMention.

Have you written a response to this post? Let me know the URL:

Do you not have a website set up with WebMention capabilities? You can use Comment Parade.