Examples of SpringMethodStat


Examples of com.alibaba.druid.support.spring.stat.SpringMethodStat

        SpringStat springStat = new SpringStat();

        SpringMethodInfo b1 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));
        SpringMethodInfo b2 = new SpringMethodInfo(B.class, B.class.getMethod("f", int.class));

        SpringMethodStat methodStat1 = springStat.getMethodStat(b1, true);
        SpringMethodStat methodStat2 = springStat.getMethodStat(b2, true);
        Assert.assertSame(methodStat1, methodStat2);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.