1 16 17 package org.springframework.instrument; 18 19 import java.lang.instrument.Instrumentation ; 20 21 29 public class InstrumentationSavingAgent { 30 31 private static Instrumentation instrumentation; 32 33 34 37 public static void premain(String agentArgs, Instrumentation inst) { 38 instrumentation = inst; 39 } 40 41 42 45 public static Instrumentation getInstrumentation() { 46 return instrumentation; 47 } 48 49 } 50 | Popular Tags |