01 2023 档案
摘要:public class ThreadImpl extends Thread { @Override public void run() { try { Thread.sleep(2000); } catch (InterruptedException e) { throw new RuntimeE
阅读全文
摘要:@Documented public @interface Cacheable { // 缓存名称 可以写多个~ @AliasFor("cacheNames") String[] value() default {}; @AliasFor("value") String[] cacheNames()
阅读全文