1.获取当前执行的类和方法名
2018-08-05 本文已影响0人
0Xday
@Test
public void show() {
System.out.println(Thread.currentThread() .getStackTrace()[1].getClassName()+":"+Thread.currentThread() .getStackTrace()[1].getMethodName());
}
eg:com.mishimao.mishimao_api.MishimaoApiApplicationTests:show