python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
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...
Marco Luzzara
Votes: 0
Answers: 1
@BeforeAdvise is not working for same method names in Spring BOOT
I am learning Spring AOP and tried to call the @BeforeAdvise for two Different methods in different classes. But the log added in the first call is getting printed only. Please check the code below an...
shivam sharma
Votes: 0
Answers: 1
Writing an aspectj pointcut for java.io.FileOutputStream
I would like to write a pointcut for the new FileInputstream(File file) constructor.
For example,
a common way to create a new file in java is:
File file = new File(myDirectory, "myFileName.txt&q...
user101
Votes: 0
Answers: 1
Is it possible to get annotations of a method in advice related with field set pointcuts?
I have an Aspect whose advice is executed when fields are set. I want to get annotation objects of methods where the advice executed (=where fields are set). Is it possible?
public class WovenClass {
...

avenue68
Votes: 0
Answers: 1