java - hibernate :创建索引

标签 java hibernate postgresql jpa

我想在我的数据库中创建多个索引。不幸的是,我们必须将持久性提供程序从 EclipseLink 更改为 Hibernate,但使用 javax.persistence.Index 的解决方案和使用 Hibernate 的解决方案都不起作用。

这是这个类的样子:

@Entity
@Table(name = "my_shop")
public class Shop extends BaseEntity {

    @Temporal(TemporalType.TIMESTAMP)
    @Column(nullable = false)
    private Calendar lastUpdate;
}

这应该是 javax.persistence.* 的解决方案:

import javax.persistence.Index;
import javax.persistence.Table;

@Table(name = "my_shop",
        indexes = @Index(columnList = "lastupdate")
)

Hibernate 注释已被弃用,因此一定有不使用这些注释的原因:

import org.hibernate.annotations.Index; // deprecated
import org.hibernate.annotations.Table;

@Table(...,
        indexes = @Index(columnNames = "lastupdate")
)

我使用 Glassfish 3.1.2.2、PostgreSQL 9.1、JPA 2.1 和 hibernate-core 4.3.4.Final。如果我查看数据库,没有通过 psql "\d+"在特定字段上创建索引。

这是我的 persistence.xml 的样子:

...
    <property name="hibernate.hbm2ddl.auto" value="create"/>
    <property name="dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>
...

只有 EclipseLink 可以轻松处理:

import org.eclipse.persistence.annotations.Index;

@Entity
@Table(name = "my_shop")
public class Shop extends BaseEntity {

    @Index
    @Temporal(TemporalType.TIMESTAMP)
    @Column(nullable = false)
    private Calendar lastUpdate;
}

我在@Column 和@Index 中使用“lastupdate”、“lastUpdate”和附加“name”属性的所有组合测试了给定的解决方案,但似乎没有任何效果。

更新 1

这个解决方案确实有效:

@javax.persistence.Table(name = "my_shop")
@Table(appliesTo = "my_shop"
        ,indexes = {@Index(columnNames = "name", name = "name"),
                @Index(columnNames = "lastupdate", name = "lastupdate")}
)

org.hibernate.annotations.Index; 仍然被标记为已弃用。那么使用或不使用它是好习惯吗?如果不是,还有什么替代方案,因为显然 javax.persistence.Index 不起作用。

org.hibernate.annotations.Index; 适用于每个值:创建、更新、... javax.persistence.Index 不管“hibernate.hbm2ddl.auto”有哪个值,都不起作用。

最佳答案

我将 JPA 2.1 与 Hibernate 4.3 和 PostgreSQL 9.3 结合使用。我对索引没有问题

hibernate-commons-annotations-4.0.4.Final.jar
hibernate-core-4.3.1.Final.jar
hibernate-jpa-2.1-api-1.0.0.Final.jar
jandex-1.1.0.Final.jar
javassist-3.18.1-GA.jar
jboss-transaction-api_1.2_spec-1.0.0.Final.jar

虽然我的配置有

<property name="hibernate.hbm2ddl.auto" value="update"/>

这就是我的实体映射

import javax.persistence.Entity;
import javax.persistence.Index;
import javax.persistence.Table;

@Entity
@Table(name = "users", indexes = {
        @Index(columnList = "id", name = "user_id_hidx"),
        @Index(columnList = "current_city", name = "cbplayer_current_city_hidx")
})

附言。事实上,我对该注释有一些问题。我无法为索引指定表空间,必须为 SINGLE_TABLE 层次结构的父类中的子类创建索引。

关于java - hibernate :创建索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22816817/

相关文章:

java - 交易在 Jetty 中不及时持久化

hibernate - 使用 Spring 回滚事务 - AOP

java - Spring mvc - REST webservice - 一个 api 是可调用的,另一个报告 "No mapping found for HTTP request with URI"

java - 使用 Confluence 的 Spring Cloud Stream Kafka 不会生成与使用 Confluence 的 Spring Kafka 相同的消息

java - 使用 Java 从 $PATH 获取可执行文件的绝对路径

java - 改造自定义回调通用类型

java - 在同一方法/事务中执行插入和读取时,Hibernate Collection 始终为空

postgresql - 使用 SIS 执行 postgres dbinit 的批处理文件给出了被拒绝的权限

postgresql - 在 VBA 中使用 ADO 连接到 PostgreSQL

mysql - 对历史上未被认可的 django 进行唯一的约束