Reputation: 1555
I am working on the big project with a number of aspects defined on business classes. I would like to avoid entering the aspect's code while debugging a code in business classes. Is there any solution for that? We are using compile time weaving and maven for compiling.
Upvotes: 0
Views: 667
Reputation: 10321
Step filtering might help you. It solves the problem with regular Java code, I'm not sure how it deals with aspects. I expect that if your aspects are in distinct packages then step filter should do the trick.
Reference here -> http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/views/debug/ref-usestepfilters.htm
Upvotes: 1
Reputation: 30419
Are you using compile or load time weaving? If you're using LTW, can you disable the weaving agent?
Upvotes: 0