You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
721 B
27 lines
721 B
package com.ruoyi.common.xss; |
|
|
|
import javax.validation.Constraint; |
|
import javax.validation.Payload; |
|
import java.lang.annotation.ElementType; |
|
import java.lang.annotation.Retention; |
|
import java.lang.annotation.RetentionPolicy; |
|
import java.lang.annotation.Target; |
|
|
|
/** |
|
* 自定义xss校验注解 |
|
* |
|
* @author ruoyi |
|
*/ |
|
@Retention(RetentionPolicy.RUNTIME) |
|
@Target(value = { ElementType.METHOD, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.PARAMETER }) |
|
@Constraint(validatedBy = { XssValidator.class }) |
|
public @interface Xss |
|
{ |
|
String message() |
|
|
|
default "不允许任何脚本运行"; |
|
|
|
Class<?>[] groups() default {}; |
|
|
|
Class<? extends Payload>[] payload() default {}; |
|
}
|
|
|