com.ueboot.core.annotation.XSSNotCheck Maven / Gradle / Ivy
The newest version!
package com.ueboot.core.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.CLASS;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* 加上此字段后,不再对当前请求的报文做xss校验
* @author yangkui
* createTime:2019/4/99:50 PM
*/
@Target({TYPE})
@Retention(RUNTIME)
public @interface XSSNotCheck {
}