有没有办法使用 javax.validation 来验证一个名为 color 的字符串类型变量,该变量需要使用注释仅具有这些值(红色、蓝色、绿色、粉红色)?
我见过 @size(min=1, max=25)
,@notnull
但是有没有这样的东西@In(red, blue, green, pink)
或多或少In-keyword
类似于mysql
有没有办法使用 javax.validation 来验证一个名为 color 的字符串类型变量,该变量需要使用注释仅具有这些值(红色、蓝色、绿色、粉红色)?
我见过 @size(min=1, max=25)
,@notnull
但是有没有这样的东西@In(red, blue, green, pink)
或多或少In-keyword
类似于mysql
In that case I think it would be simpler to use the @Pattern annotation, like the snippet below. If you want a case insensitive evaluation, just add the appropriate flag:
@Pattern(regexp = "red|blue|green|pink", flags = Pattern.Flag.CASE_INSENSITIVE)
您可以创建自定义验证注释。我会写在这里(未经测试的代码!):
@Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
@Retention(RUNTIME)
@Documented
@Constraint(validatedBy = InConstraintValidator.class)
public @interface In
{
String message() default "YOURPACKAGE.In.message}";
Class<?>[] groups() default { };
Class<? extends Payload>[] payload() default {};
Object[] values(); // TODO not sure if this is possible, might be restricted to String[]
}
public class InConstraintValidator implements ConstraintValidator<In, String>
{
private Object[] values;
public final void initialize(final In annotation)
{
values = annotation.values();
}
public final boolean isValid(final String value, final ConstraintValidatorContext context)
{
if (value == null)
{
return true;
}
return ...; // check if value is in this.values
}
}
你可以创建一个枚举
public enum Colors {
RED, PINK, YELLOW
}
然后在您的模型中,您可以像这样验证它:
public class Model {
@Enumerated(EnumType.STRING)
private Colors color;
}
假设您在 RestController 中添加了@Valid,它将根据枚举验证您的有效负载。
您可以自己创建验证类。供参考https://www.javatpoint.com/spring-mvc-custom-validation