Getting class implementation from a proxy
Hi guys,
I am attempting to get the class implementation from a proxy, but I am failing to find the right way to do it.
This is being done in a test and the proxy is actually cusAccLocSearchService
Code:
/** Inject Service to test */
@Resource(name = "cus_service_CustAccLocSearchService")
protected CusAccLocSearchService cusAccLocSearchService;
and the service implementation is annotated with @Service.
Can anyone of you point me to a piece of code that I can reuse (copy really :)), and just be able to get the implementation out of the proxy?
Thanks
Kris