Nenad Dobrilovic
Nenad Dobrilovic

Reputation: 1555

Avoiding Aspects While Debugging in Eclipse

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

Answers (2)

Yoni
Yoni

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

Kevin
Kevin

Reputation: 30419

Are you using compile or load time weaving? If you're using LTW, can you disable the weaving agent?

Upvotes: 0

Related Questions