my project using Auto increment in my hybernate entity table. every new records is save then
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
the "id" is auto increment 3 by 3. like
1051
1054
1057
any solution to fix this issue. please help me.