prePersist() method of my entity is not being invoked.
I had the same issue, it was because my method was private, so make sure the method with @ORM\PrePersist() annotation is public.
@ORM\PrePersist()