4
Chú thích JSR-303 @Valid không hoạt động cho danh sách các đối tượng con
Các lớp học chính của tôi là public class UserAddressesForm { @NotEmpty private String firstName; @NotEmpty private String lastName; private List<AddressForm> addresses; ... setters and getters public class AddressForm { @NotEmpty private String customName; @NotEmpty private String city; @NotEmpty private String streetAn; @NotEmpty private String streetHn; @NotEmpty private String addressCountry; …
95
java
json
spring
spring-mvc
jsr