cn.twelvet.xss.annotation.XssCleanIgnore Maven / Gradle / Ivy
package cn.twelvet.xss.annotation;
import java.lang.annotation.*;
/**
* 忽略 xss
*
* @author twelvet
*/
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface XssCleanIgnore {
/**
* @return 需要跳过的字段列表
*/
String[] value() default {};
}