The Hibernate property - hibernate.hbm2ddl.import_files - will only be fired when the - hibernate.hbm2ddl.auto - is set to create.
Is there any implementation to "change" that?
Not the way hibernate.hbm2ddl.import_files behaves... but a way to Hibernate to insert some data after the system was started (even if the tables are created). Executing a pure SQL script won't match my needs because the @Id @GeneratedValue won't be respected.
At the end what I need is a way for the system to detect if some data is present at the database and if not, fill it with it. Is there a known to do it and respect my @GeneratedValue counter?