aspectj
Clarification around Spring-AOP pointcuts and inheritance
Given the following example classes in my.package... public class Foo { public void logicNotInBar(){/*code*/}[详细]
2023-04-12 00:58 分类:问答Spring AOP Advice for Hibernate managed POJO
I have a parent-child relationship, such as Order to Order Item, which I have represented in the domain model like this:[详细]
2023-04-10 19:35 分类:问答IntelliJ IDEA Aspectj (Ajc compiler) takes too much time to load classes after every Make
I wonder if there is a way to reduce compilation time when using Ajc compiler with IntelliJ. I have rather big project, i would like to use AspectJ with, but unfortunatly when I\'ve tried to work with[详细]
2023-04-10 19:33 分类:问答Weaving the same aspect into multiple jars
I\'ve been having problems weaving this project correctly with AspectJ (ajc). Here\'s the situation :[详细]
2023-04-10 07:11 分类:问答aspectj-maven-compiler plugin : how to weave JRE System.*?
I\'m trying to detect where a mysterious System.gc() comes from, so I\'m hoping to create a pointcut on all calls to System.gc()[详细]
2023-04-09 17:53 分类:问答AspectJ pointcut not working with external classes and LTW
I am trying to use AspectJ (which until yesterday I didn’t know) with LTW in order to understand how an existing framework works.[详细]
2023-04-09 10:50 分类:问答Pointcut for usage of operator "==" with specific types
is it possible to write an AspectJ pointcut that matches the usage of a specific operator with a specific type?[详细]
2023-04-09 00:01 分类:问答Ignoring Aspectj during junit tests
Here is situation: We have class with defined aspect to it\'s methodA; We have JUnit test for this methodA;[详细]
2023-04-08 20:46 分类:问答Use Aspectj to find List of classes implementing a certain interface
Is it possible using AspectJ to find a list of all Classes which implement a certain interface. For e.g I have an interface MatchRule. Then I can have classes DefaultMatchRule and CustomMatchRule conc[详细]
2023-04-08 03:29 分类:问答Should I use OVal (Object Validation Framework) even if it requires AspectJ or not?
I have a Java Maven project which is developed by multiple people. As I really like doing JUnit Tests and the like, the concept of OVal intrigues me because I can write code like:[详细]
2023-04-07 18:06 分类:问答