I have one column in my Entity Class like :
@Column(name = "createdBy", nullable = false)
private String createdBy;
Later i need to update column name.
Is there any way to update the column name using hibernate annotation which will not generate new column.
hibernate.hbm2ddl.auto=updateshould do the Job if my understanding is correct