Commit 4a9626ff authored by 吴晟's avatar 吴晟 Committed by GitHub
Browse files

Merge pull request #553 from ascrutae/fix/spring-plugin

fix the spring mvc plugin occur exception when the application running in spring 3
parents a5b54402 ff5107d1
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -111,4 +111,13 @@ public abstract class AbstractControllerInstrumentation extends ClassInstanceMet
    }

    protected abstract String[] getEnhanceAnnotations();

    @Override protected String[] witnessClasses() {
        /**
         * @see {@link org.springframework.web.servlet.tags.ArgumentTag}
         */
        return new String[]{
            "org.springframework.web.servlet.tags.ArgumentTag"
        };
    }
}