com.litongjava.tio.http.server.annotation.HttpCache Maven / Gradle / Ivy
package com.litongjava.tio.http.server.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author tanyaowu
* 2017年6月29日 下午7:52:31
*/
@Target({ ElementType.METHOD/**, ElementType.TYPE*/
})
@Retention(RetentionPolicy.RUNTIME)
public @interface HttpCache {
int timeToIdleSeconds() default 10;
int timeToLiveSeconds() default 0;
String[] params();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy