我有两个实体,用户:
@Data
@EqualsAndHashCode(exclude = "id")
@Entity
@Table(name = "users")
public class User {
@Id
@SequenceGenerator(name = "user_id_seq_gen", sequenceName = "users_id_seq", allocationSize = 1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "user_id_seq_gen")
private long id;
@Column(nullable = false, unique = true, length = 100)
@NotNull
@Length(min = 4, max = 100)
private String email;
@Column(nullable = false, length = 50)
@NotNull
@Length(min = 6, max = 100)
private String password;
}
和验证:
@Data
@AllArgsConstructor
@NoArgsConstructor
@Entity
public class Verification {
@Id
@Column(length = 20)
private String code;
@OneToOne(cascade = {CascadeType.PERSIST})
private User user;
}
然后我将这些实体保存在此方法中
@Transactional
public void registerUser(User user) {
user.setPassword(DigestUtils.md5Hex(user.getPassword()));
String code = RandomStringUtils.random(20, true, true);
Verification verification;
while(true) {
if (!verificationRepository.existsByCode(code)) {
verification = new Verification(code, user);
break;
} else {
code = RandomStringUtils.random(20, true, true);
}
}
verificationRepository.save(verification);
}
但是CascadeType持久不起作用,它引发以下异常:
org.postgresql.util.PSQLException: ERROR: null value in column "user_id" violates not-null constraint
Подробности: Failing row contains (Oda2AolKrQXYSxuVmclO, null).
但是当我将层叠类型更改为MERGE时,它可以工作。而且我不明白为什么,因为我同时创建了新用户和新验证。首先,我需要保存用户,然后进行验证。你知道答案吗?
答案 0 :(得分:1)
Spring Data JPA使用ID来确定实例是否为新实例。既然您似乎将id设置为非空值,那么Spring Data JPA会将其视为现有实体,并调用merge
而不是persist
。
阅读"Saving Entities" in the Reference Documentation,了解如何调整该行为。
我建议从域驱动设计和聚合/聚合根的角度进行思考,以便确定应通过Cascade.ALL
+ DELETE_ORPHAN
进行链接的实体,以及没有任何级联和独立存储库的实体。 / p>
我建议阅读有关该主题的“ Advancing Enterprise DDD”。