Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] FATAL-AspectJWeaverLogger - trouble in:

Andy Clement wrote:
Hi Barry,

See:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=117854

The clue is in your trace:
public class
org.opentrader.infra.spring.DisableableAnnotationBeanConfigurerAspect$$EnhancerByCGLIB$$85eb3380

Basically you need to exclude the CGLIB generated classes so they are
not woven, something like:

<exclude within="*CGLIB*"/>

Hmm, I don't see why spring decided to weave that class. But I do need the aspect deployed.

There is something intermittent about this, as after some refactorings the error does not appear any longer.

thanks!!


Back to the top