How to Get a Name of a Method Being Executed?

1. Overview

Sometimes we need to know the name of the current Java method being executed.

This quick article presents a couple of simple ways of getting hold of the method name in the current execution stack.

2. Java 9: Stack-Walking API

Java 9 introduced the Stack-Walking API to traverse the JVM stack frames in a lazy and efficient manner. In order to find the currently executing method with this API, we can write a simple test:

public void givenJava9_whenWalkingTheStack_thenFindMethod() {
    StackWalker walker = StackWalker.getInstance();
    Optional<String> methodName = walker.walk(frames -> frames
      .findFirst()
      .map(StackWalker.StackFrame::getMethodName));

    assertTrue(methodName.isPresent());
    assertEquals("givenJava9_whenWalkingTheStack_thenFindMethod", methodName.get());
}

First, we get a StackWalker instance using the getInstance() factory method. Then we use the walk() method to traverse the stack frames from the top to the bottom:

  • The walk() method can convert a stream of stack frames — Stream<StackFrame> — to anything
  • The first element in the given stream is the top frame on the stack
  • The top frame on the stack always represents the currently executing method

Therefore, if we get the first element from the stream, we’ll know the currently executing method details. More specifically, we can use StackFrame.getMethodName() to find the method name.

2.1. Advantages

Compared to other approaches (more on them later), the Stack-Walking API has a few advantages:

  • No need to create a dummy anonymous inner class instance — new Object().getClass() {}
  • No need to create a dummy exception — new Throwable()
  • No need to eagerly capture the whole stacktrace, which can be costly

On the contrary, the StackWalker only walks the stack one by one in a lazy fashion. In this case, it only fetches the top frame, as opposed to the stacktrace approach which captures all the frames eagerly.

The bottom line is, use the Stack-Walking API if you’re on Java 9+.

3. Using getEnclosingMethod

We can find the name of the method being executed by using the getEnclosingMethod() API:

public void givenObject_whenGetEnclosingMethod_thenFindMethod() {
    String methodName = new Object() {}
      .getClass()
      .getEnclosingMethod()
      .getName();
       
    assertEquals("givenObject_whenGetEnclosingMethod_thenFindMethod",
      methodName);
}

4. Using Throwable Stack Trace

Using a Throwable stack trace gives us stack trace with the method currently being executed:

public void givenThrowable_whenGetStacktrace_thenFindMethod() {
    StackTraceElement[] stackTrace = new Throwable().getStackTrace();
 
    assertEquals(
      "givenThrowable_whenGetStacktrace_thenFindMethod",
      stackTrace[0].getMethodName());
}

5. Using Thread Stack Trace

Also, the stack trace of a current thread (since JDK 1.5) usually includes the name of the method that is being executed:

public void givenCurrentThread_whenGetStackTrace_thenFindMethod() {
    StackTraceElement[] stackTrace = Thread.currentThread()
      .getStackTrace();
 
    assertEquals(
      "givenCurrentThread_whenGetStackTrace_thenFindMethod",
      stackTrace[1].getMethodName()); 
}

However, we need to remember that this solution has one significant drawback. Some virtual machines may skip one or more stack frames. Although this is not common, we should be aware that this can happen.

6. Conclusion

In this tutorial, we have presented some examples of how to get the name of the currently executed method. Examples are based on stack traces and the getEnclosingMethod().

As always, you can check out the examples provided in this article over on GitHub. Also, Java 9 examples are available in our Java 9 GitHub module.

Related posts:

Java Program to Implement PrinterStateReasons API
Java Program to Implement Shoelace Algorithm
Jackson – Marshall String to JsonNode
Các nguyên lý thiết kế hướng đối tượng – SOLID
Java Program to Generate a Random Subset by Coin Flipping
Java Program to Perform Postorder Recursive Traversal of a Given Binary Tree
Introduction to Eclipse Collections
Easy Ways to Write a Java InputStream to an OutputStream
Spring RestTemplate Error Handling
Java Program to Implement Uniform-Cost Search
Hướng dẫn Java Design Pattern – State
Multi Dimensional ArrayList in Java
Hướng dẫn Java Design Pattern – Template Method
Introduction to Spring Cloud CLI
Java Program to Find Nearest Neighbor for Dynamic Data Set
Java Program to Implement Queue using Two Stacks
Checking for Empty or Blank Strings in Java
Java Program to Test Using DFS Whether a Directed Graph is Strongly Connected or Not
Java Program to Implement Brent Cycle Algorithm
Spring Cloud AWS – S3
Serverless Functions with Spring Cloud Function
Java Program to Find kth Largest Element in a Sequence
Hướng dẫn sử dụng luồng vào ra ký tự trong Java
A Guide to Iterator in Java
Sao chép các phần tử của một mảng sang mảng khác như thế nào?
Spring Boot - Enabling HTTPS
Java Program to Implement Borwein Algorithm
Java Program to Implement Best-First Search
Hướng dẫn sử dụng Java Annotation
Java Program to Implement Find all Cross Edges in a Graph
Converting between an Array and a List in Java
Tạo ứng dụng Java RESTful Client với thư viện OkHttp