Created
January 9, 2012 09:39
-
-
Save langmi/1582202 to your computer and use it in GitHub Desktop.
access target behind spring proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from http://www.techper.net/2009/06/05/how-to-acess-target-object-behind-a-spring-proxy/ | |
@SuppressWarnings({"unchecked"}) | |
protected <T> T getTargetObject(Object proxy, Class<T> targetClass) throws Exception { | |
if (AopUtils.isJdkDynamicProxy(proxy)) { | |
return (T) ((Advised)proxy).getTargetSource().getTarget(); | |
} else { | |
return (T) proxy; // expected to be cglib proxy then, which is simply a specialized class | |
} | |
} | |
// alternative for a proxied MultiResourceItemReader, beware works only if you configure StepScope with | |
// <bean class="org.springframework.batch.core.scope.StepScope" p:proxyTargetClass="true" /> | |
if (proxy instanceof Advised) { | |
try { | |
Advised advised = (Advised) proxy; | |
Object obj = advised.getTargetSource().getTarget(); | |
MultiResourceItemReader mrirTarget = (MultiResourceItemReader) obj; | |
// ... usage | |
} catch (Exception ex) { | |
throw new RuntimeException(ex); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Object target = AopProxyUtils.getSingletonTarget(proxy);