user1106819
user1106819

Reputation: 11

How to configure Aspectj for Eclipse

I am trying to configure Aspectj in eclipse but its not working can someone please share the full configuration of aspectj. I also explored different tutorials but of no use if some one has usefull stuff regarding this please share.

Can i download the eclipse ide having builtin support for Aspectj

Upvotes: 1

Views: 8371

Answers (1)

Paul Grime
Paul Grime

Reputation: 15104

I don't think Eclipse comes bundled with AspectJ. You can download it here:

http://eclipse.org/ajdt/downloads/

Install it as you would any other Eclipse plugin, e.g. via Help -> Install New Software (in Eclipse 3.7.1).

http://eclipse.org/ajdt/gettingstarted.php

Screenshot of Install Software

Once installed, you can create AspectJ projects using the New -> Project menu.

New AspectJ Project

Now you will have an AspectJ project that you can write aspects (.aj files) in.

http://eclipse.org/aspectj/doc/released/progguide/starting-aspectj.html#aspects

Upvotes: 3

Related Questions