import io.github.biezhi.iroh.annotation.Guard; import io.github.biezhi.iroh.annotation.Before; public class PerformanceAnalyzer { @Guard public void doSomething() { } @Before(value = "doSomething") public void beforeDoSomething() { } }