package org.theonefx.test.cache; import org.theonefx.wcframework.cache.annotation.MethodCache; import org.theonefx.wcframework.ioc.annotation.Bean; @Bean public class CachedClass { private int i; public void next() { i++; } @MethodCache public int getI() { return i; } }