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:

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*"/>

Andy.


Back to the top