这是我的创建方法:
public Person create(Person person) {
if (person.getId() != null) {
throw new IllegalArgumentException("Person already has an id.");
}
if (person == null) {
throw new IllegalArgumentException("Person is null.");
}
if (person.getUniqueNumber() == null) {
throw new IllegalArgumentException("Unique number is null.");
}
if (person.getUniqueNumber().length() == 0) {
throw new IllegalArgumentException("Incorrect unique number.");
}
entityManager.getTransaction().begin();
entityManager.persist(person);
entityManager.getTransaction().commit();
return person;
}
这些是人物属性:
@Entity
public class Person {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Column(nullable=false, unique=true)
private String uniqueNumber;
}
如何检查create方法中的uniqueNumber(如果没有两个人具有相同的唯一编号)?
答案 0 :(得分:1)
你应该
我建议选择第一种方法。