Skip navigation.
Home

Help Need for Binding form fields and Annotation validations

Hi,

Am facing problem with binding form fields especially List-Account. In my module am using Spring Annotations for controller/service.

In this forum i couldnt find any place for attachments, hence i have uploaded the files at this location[forum]
http://forum.springsource.org/showthread.php?t=82203

My Code:

public class Customer {
        private String customerId;
	private String customerName;
	private BigDecimal customerSalary;
	private List<Account> customerAccounts;
  }
 
  public class Account {
        private String accountNumber;
	private String accountType;
	private String bankName;
	private boolean activeStatus;
	private transient boolean termsAndConditionFlag;
  }

Thanks in Advance
Rauf

Matt Fleming's picture

Did you read...

1984