package com.artfess.base.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 异步线程清理线程变量 *
* 异步线程清理线程变量 ** * @company 阿特菲斯信息技术有限公司 * @author zhangxw * @email zhangxw@jee-soft.cn * @date 2020年11月6日 */ @Target({ElementType.TYPE,ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface AsyncThreadClean { }