If I'm using hibernate Pojo class using annotations as below - as I'm using GenerationType.AUTO
@Id @GeneratedValue(strategy = GenerationType.AUTO) private long id; Is there any need to add "auto-increment" in database side also for an entity...?