I have a simple MySQL database with some valid data that I mapped to a java class using hibernate framework.
Now I change some database table fields in MySQL and want to update my model (e.g. java classes).
I don't want to remap my database because I've done some changes in model classes that need them.
Is there any way to update the model without losing any data?
I used Netbeans 8.0 and Hibernate 4.x .
Is there a wizard to do this like when updating model in entity framework (Visual Studio) for Netbeans?
Thanks.