Skip to content

Instantly share code, notes, and snippets.

@kirkch
kirkch / ProxifierPerformance.java
Created July 31, 2012 06:35 — forked from garcia-jj/ProxifierPerformance.java
cglib vs javassist performance tests
package com.mosaic.esa;
import javassist.util.proxy.MethodHandler;
import javassist.util.proxy.ProxyFactory;
import javassist.util.proxy.ProxyObject;
import net.sf.cglib.proxy.Enhancer;
import net.sf.cglib.proxy.MethodInterceptor;
import net.sf.cglib.proxy.MethodProxy;
import org.junit.Test;