Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] JPA and annotated field of entity

Hi,

I have annotated fields of an entity to track the change of that
property.

If I run this plain with loadtime weaving the pointcut fires.

[code]
    @Pointcut("set(@AuditableProperty * *.*)")
    public void setter() {};
[/code]

Adding JPA (Eclipselink), setting fields in classes that are database
entities, the pointcut does not fire anymore.

Any hints whats going on?

Arne



Back to the top