Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] AspectJ Future

Hi Andy,


First of all thx for your reply. Greatly appreciated.


I used the following link when installing ajdt:

http://download.eclipse.org/tools/ajdt/46/dev/update


I restarted Eclipse and jumped into writing aspects. I used the wizard to create a new aspect and added some annotations.

Now annotations seems ok but I get the following error:





 

 



When I change the code to use aspectj "traditional" syntax:

before() : deprecatedMethods() {
        Log.info("Deprecated: "+thisJoinPoint);
      
    }

thisJoinPoint is not marked red.

Great to hear that you are working on a aspectj for java 9!
Looking forward to it.
What is the plan ? Are you working on this on your own?

br,

//mike


Från: aspectj-users-bounces@xxxxxxxxxxx <aspectj-users-bounces@xxxxxxxxxxx> för Andy Clement <andrew.clement@xxxxxxxxx>
Skickat: den 12 september 2017 19:30
Till: aspectj-users@xxxxxxxxxxx
Ämne: Re: [aspectj-users] AspectJ Future
 
Hey,

I have to admit I'm not trying it on a daily basis but I thought AJDT was OK - is the message you posted "Space to find context alternatives for annotations." an indication of the error you are seeing? Doesn't sound familiar to me.

As soon as I clear some space on my TODO list I am tackling a proper AspectJ9 release (non beta) and that will be coupled with a round of testing of AJDT using that new AspectJ. I'll be properly testing code style and annotation style at that time.

cheers,
Andy


On 12 September 2017 at 09:23, Mikael Petterson <mikaelpetterson@xxxxxxxxxxx> wrote:

Hi,


I have done some reading about AOP and it's implementation in java, aspectj.

I decided to give it a try for our application so I downloaded it for Eclipse Neon 4.6.3 that I am using as IDE.


I added an aspect but had to go back to using the "original syntax" and not annotation based since the ajdt did not support it.


I checked the version I downloaded what was available for 4.6 however I can see that the following is not working.


- Space to find context alternatives for annotations.


Is there some setting I have to fix?


br,


//mike


 

 


_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top