annotations - How to auto increment a non primary id column using Hibernate? -
i have kept auto increment primary key, using auto increment option in table. , stated using hibernate.
but want auto increment column not primary key column using hibernate annotation. please help. in advance.
use following annotation on specific field
@generatedtype
private int non_primary_field
Comments
Post a Comment