How to use the same form DTO, with different valid

2019-08-12 05:27发布

Which is the best practice to write DTO and follow different validated annotations, without double my code? Below attached a simple example, that I want to avoid:

public class AddressForm1 {

    @NotEmpty
    private String address;

    @NotNull
    @Max(23)
    @Min(30)
    private BigDecimal lng;

    // getters & setters
}

and;

public class AddressForm2 {

    // removed annotation, empty value permitted
    private String address;

    @NotNull
    @Max(43)
    @Min(50)
    private BigDecimal lng;

    //getters & setters
}

2条回答
Anthone
2楼-- · 2019-08-12 06:04

You can use Groups, and validate some annotations only when you need, check this Group Hibernate Doc

查看更多
狗以群分
3楼-- · 2019-08-12 06:15

You can use validation group, and group your constraints. Than decide which set of constraints you'll apply using the @Validated annotation, with the appropriate group specified

Check the example in http://www.javacodegeeks.com/2014/08/validation-groups-in-spring-mvc.html

查看更多
登录 后发表回答