4 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
191
views
Compiling with AJC in IntelliJ giving error
I'm trying to compile a program using AspectJ in IntelliJ, but I'm getting the error message ajc: unrecognized single argument: "-proc:none". I'm also getting an error message that says ...
0
votes
1
answer
232
views
Cannot run ajc compiled class file in the terminal using Java
I trying to learn aspectj for a project. I wish to run the java files from the terminal using ajc and java but I am unable to do so.
I have 2 files in my directory HelloWorld.java and HWTracer.aj
...
0
votes
1
answer
717
views
Problem in running a project with aspectJ in IntelliJ IDEA 2022年2月3日 (Community Edition)
I am trying to run a project with aspectJ, rather than Java, in IntelliJ IDEA. I had done it before by simply putting "aspectj-1.9.6" in a "Lib" folder and setting the folder "...
0
votes
1
answer
669
views
AspectJ (ajc) with Modules
I am using AspectJ 1.9.7 and I am trying to compile a modular application with ajc. Let's suppose I have a single module called test and the following tree:
.
└── test
├── aspectj
│ ├── Main....