2013年(92)
分类: 信息化
2013-02-21 05:31:00
[代码] [Java]代码 package com.jfinal.plugin.ehcache; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotatio ; n.RetentionPolicy; import java.lang.annotation.Target; @Inherited @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE,ElementType.METHOD}) public @interface RemoveCache { String[] value(); } ;