I have a server based component wired up using Spring. I have a client interface that also uses Spring to connect to the server. I need to connect to the server from an Eclipse RCP application.
I have included the required spring libraries in my target platform.
However, when I try to create the Spring context, I get a ClassNotFoundException on "net.sf.cglib.proxy.Enhancer" which results in an IllegalStateException being thrown.
I have manually wrapped cglib 2.2 in a plugin and added that to my target platform, but it still throws the same error.
How do I ensure the Spring modules have access to CGLib?