You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below I have a simple entity code
Where I don't want createdDateTime to get updated to null when I am not passing it in parameters.
as of now .save() method saving null value in createdDateTime.
public class Test{
private String name;
private String desc;
@Transient // not working
@column(updatable=false) //not working
private LocalDateTime createdDateTime;
}