我在使用Postgres UUID
类型,java.util.UUID
和Hibernate时遇到麻烦。
对于本机查询,一切正常,但是当我尝试使用HQL时,它告诉我找不到id列:column huser0_.id does not exist
。
这是存储库的代码:
import com.xobotun.common.HUser;
import java.util.UUID;
@org.springframework.stereotype.Repository
public interface ReadOnlyUserRepository extends Repository<HUser, UUID> {
// @Query("select u from HUser u where u.id = :id")
@Query(value = "select * from \"user\" where id = :id", nativeQuery = true)
HUser getById(@Param("id") UUID id);
}
以这种方式打印预期的
HUser(id=fbd3c9e2-8fa4-11e9-bc42-526af7764f64, name=test, about=test, isPermabanned=false, created=2019-06-15T19:37:30.503, lastActive=2019-06-15T19:37:33.512)
但是当注释掉本机查询并使用HQL时,它突然停止工作:
org.postgresql.util.PSQLException: ERROR: column huser0_.id does not exist
有人遇到过这样的问题吗?谢谢。
更多信息,以了解问题并检查我是否有错字。 :)
表DDL:
CREATE TABLE "user" (
id UUID NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
is_permabanned BOOLEAN DEFAULT FALSE NOT NULL,
created TIMESTAMP DEFAULT now() NOT NULL,
last_active TIMESTAMP,
about TEXT
);
实体类:
package com.xobotun.common;
import lombok.Data;
import javax.persistence.*;
import java.time.LocalDateTime;
import java.util.UUID;
@Data
@Entity
@Table(name = "user")
public class HUser {
@Id
@Column(name = "id") //, columnDefinition = "uuid", updatable = false)
// @Type(type="pg-uuid")
private UUID id;
@Column(name = "name")
private String name;
@Column(name = "about")
private String about;
@Column(name = "is_permabanned")
private Boolean isPermabanned;
@Column(name = "created")
private LocalDateTime created;
@Column(name = "last_active")
private LocalDateTime lastActive;
}
如您所见,我在id
字段上尝试了各种选项,但是它们都不适用于HQL查询。
Java版本是11,PostgreSQL也是11,下面是相关的依赖项:
dependencies {
compile 'org.springframework.data:spring-data-jpa:2.1.5.RELEASE'
compile 'javax.persistence:javax.persistence-api:2.2'
compile 'com.vladmihalcea:hibernate-types-52:2.4.4'
implementation 'org.hibernate:hibernate-core:5.4.3.Final'
implementation 'org.postgresql:postgresql:42.2.5.jre7'
}
我还尝试了以下问题的解决方案,但它们没有帮助:1 2 3 4
UPD1 : 这是Hibernate在查询失败时生成的SQL:
select
huser0_.id as id1_0_,
huser0_.about as about2_0_,
huser0_.created as created3_0_,
huser0_.is_permabanned as is_perma4_0_,
huser0_.last_active as last_act5_0_,
huser0_.name as name6_0_
from
user huser0_
where
huser0_.id=?
答案 0 :(得分:1)
由于@JBNizet的友好评论,我发现问题不在于奇怪的UUID行为,而是默认情况下Hibernate不会转义标识符。
这个问题实际上有三种简单的解决方案:
请勿使用保留关键字,将表名更改为其他名称。
手动转义表名(例如HUser.java中的@Table(name = "\"user\"")
)。
将行hibernate.globally_quoted_identifiers=true
添加到您的配置中。我不知道为什么默认情况下不是true
...有关更多详细信息,请参见this。