文章列表
Bean Validation约束的三种不同的注解(annotations) 类型
1.字段级(field level) 约束,放在字段
上
@NotNull
private String manufacturer;
2.属性级别约束,放在get方法上
,不可以放在set方法
@NotNull
public String getManufacturer() {
return manufacturer;
}
一个属性,最好不 ...