在 Hibernate 中故意禁用了架构更新时的索引创建,因为它似乎与架构导出中使用的命名不一致。
这是可以在类 中找到的注释代码。org.hibernate.cfg.Configuration
//broken, 'cos we don't generate these with names in SchemaExport
subIter = table.getIndexIterator();
while ( subIter.hasNext() ) {
Index index = (Index) subIter.next();
if ( !index.isForeignKey() || !dialect.hasImplicitIndexForForeignKey() ) {
if ( tableInfo==null || tableInfo.getIndexMetadata( index.getFilterName() ) == null ) {
script.add( index.sqlCreateString(dialect, mapping) );
}
}
}
//broken, 'cos we don't generate these with names in SchemaExport
subIter = table.getUniqueKeyIterator();
while ( subIter.hasNext() ) {
UniqueKey uk = (UniqueKey) subIter.next();
if ( tableInfo==null || tableInfo.getIndexMetadata( uk.getFilterName() ) == null ) {
script.add( uk.sqlCreateString(dialect, mapping) );
}
}
通常我会删除该注释,重新编译Hibernate.jar并在架构更新时创建索引,而不会出现任何问题,至少在Oracle DB中是这样。
在最新版本的Hibernate中,官方版本中对第一部分(表索引)的评论也已被删除,而第二部分(实现唯一键的索引)的评论仍然被删除。请参阅 http://opensource.atlassian.com/projects/hibernate/browse/HHH-1012