I want to implement a simple application Hibernate forward engineering concept. Where If I make any changes to Hibernate Entities then Hibernate should automatically make specific changes to the database columns.
For example:
If I add a new field in Hibernate Entity (POJO
), then a new column should be added to the DB table. (This should happen when I restart tomcat).
Is this possible?