Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add some debugging code to an already compiled java class while not touching the original class. I'm thinking of using AspectJ, but I just want to know if it is possible, and if so how?

Example: class A contains void main() which does stuff and calls method sum(). aspect B adds println() to before A.sum() I want to run class A with aspect B's modification without editing A in any way.

share|improve this question

1 Answer

up vote 0 down vote accepted

It's possible to do this without touching existing java class (either binary or source), using load-time weaving (LTW).

Please see the official documentation on LTW: http://www.eclipse.org/aspectj/doc/released/devguide/ltw.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.