Spring Boot 如何在Sping Boot 中进行条件验证?

jrcvhitl  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(143)

我正在开发Spring REST应用程序。
我有一个DTO

  1. private String name;
  2. @
  3. private String nationality;
  4. private String matchType;
  5. private List<NC_Field> ncFields = new ArrayList();
  6. // Getters and Setters

字符串
我有三张table
1.字段表
1.名称清除表

  1. NC_Fields表


的数据

ecfsfe2w

ecfsfe2w1#

你可以用你想要的逻辑定义一个自定义的验证器,然后你可以为这个验证器创建一个自定义的注解,并像@NotNull一样在你的DTO中使用它。

  1. public class CustomValidator implements ConstraintValidator<MyObject, String> {
  2. .
  3. .
  4. .
  5. }

字符串

  1. @Constraint(validatedBy = { CustomValidator.class })
  2. @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
  3. @Retention(RetentionPolicy.RUNTIME)
  4. public @interface ContactInfo {
  5. String message() default "Invalid value";
  6. Class<?>[] groups() default {};
  7. Class<? extends Payload>[] payload() default {};
  8. }


请参考此链接,例如:https://www.baeldung.com/spring-dynamic-dto-validation

展开查看全部

相关问题