| Hello, I want to change the default UK and FK name generated by Hibernate, so I implemented the ImplicitNamingStrategy and override determineUniqueKeyName and determineForeignKeyName methods, the result is , determineForeignKeyName works fine but determineUniqueKeyName not as expected. And I find that the UK name is generated by the *Constraint.generateName( "UK_", table, col ) * in StandardTableExporter class , So is this a bug ? or how can I implement this feature? |