2017-02-22 6 views

답변

0

예, 가능합니다. 이를 위해 에이전트 빌더를 적용 할 수 있습니다.

new AgentBuilder.Default() 
    .type(ElementMatchers.isSubTypeOf(YourInterface.class)) 
    .transform((builder, type, cl, module) -> 
    builder.method(returns(YourReturnType.class)).intercept(...) 
).installOn(inst);