Is there a kapt annotation processor that makes `@...
# kapt
j
Is there a kapt annotation processor that makes
@Timed
annotations usable on any arbitrary class's methods? Would that be a reasonable way of thinking about it? right now i've got HTTP methods being @Timed via dropwizard/jersey metrics integration, but other injected classes don't record anything. I inject other classes via Guice, so could mostly use
metrics-guice
, but am subject to not using providers / needing open classes & methods, and concerned that moving from guice to dagger / kodein would not support the AOP aspects there. Anyone have any thoughts/experience?