Trying to weave in a default toString() method for a large number of DTOs, using compile-time weaving only. The goal is to return a JSON representation using the Jackson library.
Followed the suggestions in this article, turned it into annotation-style aspect config, and ended up with the following code:
public @Aspect class JsonToStringAspect {
private interface JsonToString {
public String toString();
}
public static class JsonToStringImpl implements JsonToString {
public String toString() {
return SingletonJsonEncoder.toJsonString(this);
}
}
@SuppressWarnings("unused")
@DeclareParents(value = "com.mycompany.dto..*", defaultImpl = JsonToStringImpl.class)
private JsonToString implementedInterface;
}
Running javap on the resulting classes shows that they implement the JsonToString interface, but there's no sign of the toString() method anywhere.
If I change the method name to something that doesn't collide with Object.toString() (e.g. toString2()), the method is truly added.
Any clues on how to overcome this? Maybe an @Around advice on a pointcut that intercepts the execution of java.lang.Object.toString(), only for children classes below package com.mycompany.dto? Or a way to force the mixin to happen?
toString()method. Obviously it helps keep yourtoString()methods DRY but its also a bit of non-obvious "magic" that makes a codebase more complicated. – SingleShot Jan 13 at 17:49