Re: [aspectj-users] AOP With Weblogic

2016-07-22 Thread Andy Clement
I’m afraid I’m no expert on weblogic configuration. I’d say perhaps search the AspectJ mailing list archive for an answer ( http://dev.eclipse.org/mhonarc/lists/aspectj-users/ ) - or try stack overflow, there are quite a few people

Re: [aspectj-users] Hook Thread Creations

2016-07-22 Thread Andy Clement
aspect X { before(): call(Thread.new(..)) { // Thread constructor called System.out.println("Thread created!"); } before(): call(* Thread.start(..)) { // Thread.start called System.out.println("Thread started!"); } } Andy > On Jul 20, 2016, at 1:07 AM, ants

Re: [aspectj-users] Java 9 sun.boot.class.path gone

2016-07-22 Thread Andy Clement
I thought the fix for this was already in (a variant of it) - I was doing some work on 1.9.0 BETA4 recently. This included picking up all the latest Eclipse JDT support for Java9 and coping with the changes to paths. But I will admit I was working with a 121 build version of Java9, perhaps

[aspectj-users] Java 9 sun.boot.class.path gone

2016-07-22 Thread Mario Ivankovits
Hi! In latest Java 9 builds the „sun.boot.class.path“ is gone. Due to this, the core java classes can no longer be found by aspectj. On AspectJs earlyJava9 branch I’ve patched it like this to make that work again. Index: weaver/src/org/aspectj/weaver/bcel/ClassPathManager.java