I am using Telosys to generate my DAL layer from database and it is working smoothly. However I have noticed that it only generates field annotation for Identity fields as AUTO
@GeneratedValue(strategy=GenerationType.AUTO)
I have in my database primary key fields set to Identity and a sequence is provided by Postgres. But when I generate my entity class it only shows annotation as AUTO whereas I want it to generate Idendityt:
@GeneratedValue(strategy=GenerationType.IDENTITY)
I checked the source code for JPAAnnotations class and it has the logic to generated IDENTITY annotation.
Am I missing something? Also, how can I upgrade my eclipse plugin to use Telosys 4.x version?
Thank you Telosys team.