5-4 掲示板へのバリデーション機能の追加
③掲示板エンティティクラスにバリデーションのアノテーションを修正・追加します。
import javax.validation.constraints.NotEmpty; (途中略) @Column(nullable = false) @NotEmpty private String title; @Column(nullable = false) @NotEmpty (以下略)
③掲示板エンティティクラスにバリデーションのアノテーションを修正・追加します。
import javax.validation.constraints.NotEmpty; (途中略) @Column(nullable = false) @NotEmpty private String title; @Column(nullable = false) @NotEmpty (以下略)