次のようなフォームを表すカスタム オブジェクトがあります。
public class RegisterForm {
@NotNull(message = "Account name cannot be empty.")
@Size(min = 3, max = 50, message = "Account name must be between 3 and 50 characters long.")
private String accountName;
private boolean termsConditions;
}
私のコントローラーは次のようになります。
public ModelAndView create(@Valid AccountForm accountForm, BindingResult bindingResult, HttpServletRequest request) {
}
そこで、フォームのチェックボックス用のブール値 termsConditions を追加しました。
この値が true であることを確認するために使用する必要がある注釈は何ですか? つまり、チェックボックスがチェックされています。