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:

Making an educated guess based on the name of your aspect, you might also be able to use:

<aspects>
  <exclude within="org.springframework.beans.factory.aspectj.AnnotationBeanConfigurerAspect"/>
</aspects>

as well if all you want to do is make sure this aspect is not used...

Regards, Adrian.

On 08/05/06, Andy Clement < andrew.clement@xxxxxxxxx> 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*"/>

Andy.
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users



--
-- Adrian
adrian.colyer@xxxxxxxxx

Back to the top