教义2 普雷西斯特不开火
2022-08-30 15:46:02
在同一个实体中,我有一个PreUpdate和一个PrePersist。PreUpdate会触发,但PrePersist永远不会。我在生命周期回调中放置了一个刷新和注释。完整的实体可以在 http://pastebin.com/yUk1u4GQdie()
实体回调
/**
* @PreUpdate
*/
public function fixDates(){
$this->updatedOn = $this->getNow();
$this->closedDate = null;
$this->openDate = null;
print "dates fixed";
}
/**
* @PrePersist
*/
public function prePersist() {
print 'in prePersist';
die();
}
实体管理器调用
$em->persist($school);
$em->flush();
die();
我的屏幕显示“固定日期”,但不是prePersist消息。我确实在实体的顶部有。@HasLifecycleCallbacks