我正在开发Spring REST应用程序。
我有一个DTO
private String name;
@
private String nationality;
private String matchType;
private List<NC_Field> ncFields = new ArrayList();
// Getters and Setters
字符串
我有三张table
1.字段表
1.名称清除表
- NC_Fields表
的数据
我正在开发Spring REST应用程序。
我有一个DTO
private String name;
@
private String nationality;
private String matchType;
private List<NC_Field> ncFields = new ArrayList();
// Getters and Setters
字符串
我有三张table
1.字段表
1.名称清除表
的数据
1条答案
按热度按时间ecfsfe2w1#
你可以用你想要的逻辑定义一个自定义的验证器,然后你可以为这个验证器创建一个自定义的注解,并像
@NotNull
一样在你的DTO中使用它。字符串
型
请参考此链接,例如:https://www.baeldung.com/spring-dynamic-dto-validation