Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-dev] NotSerializableException: org.aspectj.runtime.reflect.JoinPointImpl$StaticPartImpl

I can provide you an option to make them transient, but I'm hesitant
to just change the default to transient.  If you want an option like
that, please open a bugzilla:
https://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ

and I'll take a look.

cheers,
Andy

On 28 February 2012 14:35, Choudary Kothapalli
<choudary.kothapalli@xxxxxxxxx> wrote:
> My product MaintainJ uses AspectJ load time weaving to capture the call
> trace at runtime. When weaving an application, the following exception is
> seen.
>
> Caused by: java.io.NotSerializableException:
> org.aspectj.runtime.reflect.JoinPointImpl$StaticPartImpl
>     at java.io.ObjectOutputStream.writeObject0(Unknown Source)
>     at java.io.ObjectOutputStream.writeObject(Unknown Source)
>     at xxx.yyyyy.ZZZClass.writeExternal_aroundBody4(ZZZClass.java:70)
>
> AspectJ LTW seems to insert many fields as below in the class files and
> serializing them seems to be failing.
>
> private static final org.aspectj.lang.JoinPoint.StaticPart ajc$tjp_0; /*
> synthetic field */
>
> Is there any quick fix for this? Can AspectJ make these fields transient
> without any other issues?
>
> Thanks,
> Choudary Kothapalli
> MaintainJ Inc.
>
> _______________________________________________
> aspectj-dev mailing list
> aspectj-dev@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-dev
>


Back to the top