thanks to you guys my knowlegde on hibernate has been improve dratiscally. now i hit a block here about current_timestamp. here is my codes
@Column(name=\"D
You could achieve the same thing with hibernates @CreationTimestampand @UpdateTimestamp annotations e.g.
@CreationTimestamp
@UpdateTimestamp
@Column(name = "CREATED") @CreationTimestamp private LocalDateTime created; @Column(name = "LAST_UPDATED") @UpdateTimestamp private LocalDateTime lastUpdated;