Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] LTW and rt.jar

Thanks a lot for the clear answer, Ron!

Eric

On 17/04/07, Ron Bodkin <rbodkin@xxxxxxxxxxxxxx> wrote:
Hi Eric,

No it does not. It explicitly will not weave things loaded in the bootstrap
loader nor in any package starting matching java..* or javax..*  Per
https://bugs.eclipse.org/bugs/show_bug.cgi?id=149261 it should be possible
to weave into javax..* (indeed I've been using a modified AspectJ weaver
that does so).Weaving into java..* should be possible but would be much
better if LTW supported reweaving because a number of types get loaded
before the JVMTI system is available to weave anything. Also, weaving into
the bootstrap loader would require handling null class loaders in a number
of places where this isn't expected.

-----Original Message-----
From: aspectj-users-bounces@xxxxxxxxxxx
[mailto:aspectj-users-bounces@xxxxxxxxxxx] On Behalf Of Eric Bodden
Sent: Tuesday, April 17, 2007 8:40 AM
To: aspectj-users@xxxxxxxxxxx
Subject: [aspectj-users] LTW and rt.jar

Hi, I have quick question:

Does the standard AspectJ load-time weaver usually automatically weave
into the JDK, i.e. rt.jar? If not, is there an option to make it do
so?

Cheers,
Eric

--
Eric Bodden
Sable Research Group
McGill University, Montréal, Canada
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users

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



--
Eric Bodden
Sable Research Group
McGill University, Montréal, Canada


Back to the top