「Java入門」アノテーション@NotEmptyの使い方
構文
@NotEmpty
@NotEmpty(message=xxx)
※対象文字列:Null(NG) 空文字""(OK) 空白(NG)
使用例1
@NotEmpty(message= “入力項目数が入力されていません")
private Integer itemCount = null;
@NotEmpty(message = “ユーザ名が入力されていません")
private String userName = null;
使用例2
@NotEmpty
private String empName;