public void getMethodname(){
    String methodName = Thread.currentThread().getStackTrace()[1].getMethodName(); // 현재 메소드명
    System.out.println("현재 메소드명 : " + methodName);
}

 

 

 

참고 사이트

https://devmoony.tistory.com/94

https://hjh0827.tistory.com/88

 

 

+ Recent posts