Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在我的数据库中实现索引我想知道这个注释是否只适用于 DDL 我们有一个遗留系统如果没有生成架构,这句话就不起作用?
被忽略?
我的代码
@org.hibernate.annotations.Table(appliesTo = "person",indexes={@org.hibernate.annotations.Index(name = "part_of_name",columnNames={"c01"})})
我正在检查文档,文档INDEX几乎是空的。看一看
INDEX
索引文件
你猜对了,这基本上是一个 DDL 注释。只有通过@Index设置 hibernate.hbm2ddl.auto hibernate 属性来更新才会产生效果(即创建一个新索引)
@Index