我可以使用 Byte Buddy 通过从抽象类继承来在运行时增强类吗?
@AggregateRoot
public class Organization {
}
我应该能够Organization
通过从下面的抽象类继承来拦截并增强它的所有实例。
public abstract class BaseAggregateRoot {
public void notify() {
//Notify domain events
}
}
我可以使用 Byte Buddy 通过从抽象类继承来在运行时增强类吗?
@AggregateRoot
public class Organization {
}
我应该能够Organization
通过从下面的抽象类继承来拦截并增强它的所有实例。
public abstract class BaseAggregateRoot {
public void notify() {
//Notify domain events
}
}