Results 1 issues of Lin.Liang

I try to use the advice to intercept all the methods excluding constructor method, the code below works well ``` public static void main(String[] args) { ByteBuddyAgent.install(); new ByteBuddy().redefine(OrderController.class) .visit(Advice.to(MethodTimeCostAdvice.class).on(isDeclaredBy(OrderController.class)...

question