我正在尝试使用javax.validation.Validator验证一个类。以下是我正在做的事情。
final Set<ConstraintViolation<PaymentDetailsForm>> set = validator.validate(accountPaymentDetailsForm);
我的paymentDetailForm看起来像这样
public class PaymentDetailsForm
{
private String paymentId;
private String cardTypeCode;
private Boolean newBillingAddress;
private AddressForm billingAddress;
private String securityCode;
当我提交表单时,它正在验证paymentId,cardTypeCode等。但它没有验证PaymentDetailsForm中的billingAddress表单。
我是否需要在getBillingAddress()方法上进行任何anotation?