4
這裏的JPA2實體監聽註釋:爲什麼沒有@PreLoad實體監聽器?
@PrePersist
@PreRemove
@PostPersist
@PostRemove
@PreUpdate
@PostUpdate
@PostLoad
但是沒有@PreLoad註解?怎麼可能?
這裏的JPA2實體監聽註釋:爲什麼沒有@PreLoad實體監聽器?
@PrePersist
@PreRemove
@PostPersist
@PostRemove
@PreUpdate
@PostUpdate
@PostLoad
但是沒有@PreLoad註解?怎麼可能?
我會運用與JSF - what is the difference between @PostConstruct and direct method call from constructor?相同的知識。 @PostLoad
在構造函數之後執行並且已準備好所有JPA
相關依存關係,而此類的對象實際上是@Entity
而不是簡單的Java
對象。因此,不存在的@PreLoad
實際上是構造函數,但@Entity
不是之前還沒有@PostLoad
。