您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. import org.aspectj.weaver.tools.Trace;
  2. import org.aspectj.weaver.tools.TraceFactory;
  3. public class TracingTest {
  4. public void test () {
  5. TraceFactory factory = TraceFactory.getTraceFactory();
  6. Trace trace = factory.getTrace(getClass());
  7. System.out.println("? TracingTest.main() trace=" + trace);
  8. }
  9. public static void main (String[] args) {
  10. new TracingTest().test();
  11. }
  12. }