My Spring app depends on a library that I need to override a class from, let's say com.dep.A
. I want to create class B
which extends A
, and tell spring that every time A
is trying to be loaded (by any code or dependency) I want to load B
instead.
Is there a spring setting that would achieve this ? If not, would AspectJ be an option (I think Spring has an AspectJ feature) ?
EDIT: a bit more specific on the use case
If I were only able to plug myself into the execution flow of a specific method of class A
, I'd be pretty please. In fact, forget about B
extending A
: what I am really trying to achieve is to intercept the execution of method A.originalMethod(MyObject o)
, and use o
in my custom method B.interceptOriginalMethod()
.
Since the class is from a different library, it does not sound like it is a spring bean, and then Spring can't help you. It basically comes down to how the object is constructed, if the new operator is not called by you, but code inside the library you only have two options (Unless the Jar is signed, then I think there are no options).
I have used option 2 a couple of times to fix minor issues in different open source libraries, when I was too lazy to rebuild the entire library from source. You have to be carefully when you upgrade the library, in case they have change the underlying code.