[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[ews.eclipse.technology.aspectj] Introduction makes bean info unavailable?
|
I have introduced an interface and impl into a class using load-time weaving. The sysout message indicates that this done correctly. But when I instantiate the class via spring (which does indeed create the object instance) and spring tries to do:
this.beanInfo = Introspector.getBeanInfo(clazz);
which eventually invokes
Class.privateGetDeclaredMehods()
I get a NoClassDefFoundException. I know I have seen this problem before, but can't seem to recall what the trigger was.