I have a j2ee application using hibernate with annotation. How do I annotate the Id field in my pojo class to set it as auto increment or auto generated. and in adding the bean do I leave that field in my bean null?
and you leave it In some cases the It seems |
|||||||||||||||
|
|
Do it as follows :-
You can use any arbitrary name instead of kaugen. It worked well, I could see below queries on console
|
|||
|
|
If you have a numeric column that you want to auto-increment, it might be an option to set
|
|||
|
|
|
FYI Using netbeans New Entity Classes from Database with a mysql *auto_increment* column, creates you an attribute with the following annotations:
This was getting me the same an error saying the column must not be null, so i simply removed the @NotNull anotation leaving the attribute null, and it works! |
|||
|
|