1.获取当前执行的类和方法名

@Test
public void show() {
System.out.println(Thread.currentThread() .getStackTrace()[1].getClassName()+":"+Thread.currentThread() .getStackTrace()[1].getMethodName());
}

eg:com.mishimao.mishimao_api.MishimaoApiApplicationTests:show

你可能感兴趣的:(1.获取当前执行的类和方法名)