有没有办法使用javax.validation验证一个名为color的字符串类型的变量,该变量需要使用注释只有这些值(红色,蓝色,绿色,粉红色)?
我看过@size(min=1, max=25)
和@notnull
但有类似@In(red, blue, green, pink)
或多或少类似于In-keyword
mysql
答案 0 :(得分:50)
在这种情况下,我认为使用@Pattern注释会更简单,就像下面的代码片段一样。如果您想要不区分大小写的评估,只需添加适当的标志:
@Pattern(regexp = "red|blue|green|pink", flags = Pattern.Flag.CASE_INSENSITIVE)
答案 1 :(得分:8)
您可以创建自定义验证注释。我会在这里写(未经测试的代码!):
@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
}
}
答案 2 :(得分:3)
你可以创建一个枚举
public enum Colors {
RED, PINK, YELLOW
}
然后在您的模型中,您可以像这样验证它:
public class Model {
@Enumerated(EnumType.STRING)
private Colors color;
}
如果您已添加,将根据枚举验证您的有效负载 @有效 在你的RestController中。
答案 3 :(得分:1)
您可以自己创建验证类。供参考https://www.javatpoint.com/spring-mvc-custom-validation