java - @Column(unique = true) 产生警告 o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Warning Code: 0, SQLState: 00000

标签 java postgresql hibernate jpa spring-boot

在带有 Spring Boot 2.0.0.RELEASE 的项目中,当我第一次启动应用程序时,正在创建数据库表时,我收到以下警告消息:

Hibernate: alter table if exists bpermission drop constraint if exists UK_qhp5om4s0bcb6j0j8pgcwitke
2018-03-14 11:32:03.833  WARN 15999 --- [  restartedMain] o.h.engine.jdbc.spi.SqlExceptionHelper   : SQL Warning Code: 0, SQLState: 00000
2018-03-14 11:32:03.833  WARN 15999 --- [  restartedMain] o.h.engine.jdbc.spi.SqlExceptionHelper   : constraint "uk_qhp5om4s0bcb6j0j8pgcwitke" of relation "bpermission" does not exist, skipping

注意约束名称 -> uk_qhp5om4s0bcb6j0j8pgcwitke

...在下面我看到了这个记录:

Hibernate: alter table if exists bpermission add constraint UK_qhp5om4s0bcb6j0j8pgcwitke unique (label)
Hibernate: alter table if exists bpermission drop constraint if exists UK_ow4uw3orjjykeq869spvqtv6u

从前面的消息我们可以看到 Hibernate 正在添加约束 UK_qhp5om4s0bcb6j0j8pgcwitke,与警告中显示的相同,但第一个字母是大写的。这与 label 属性中的 unique 约束有关(参见下面的类)。

收到此警告的(可能)相关实体是:

B权限

@Data
@NoArgsConstructor(force = true)
@RequiredArgsConstructor
@EqualsAndHashCode(callSuper = true, exclude = "roles")
@ToString(callSuper = true, exclude = "roles")
@Entity
public class BPermission extends GmsEntity {

    @NotNull()
    @NotBlank()
    @Size(max = 255)
    @Pattern(regexp = "someDefinedRegexp")
    @Column(unique = true, nullable = false, length = 255)
    private final String name;

    @NotNull()
    @NotBlank()
    @Size(max = 255)
    @Column(unique = true, nullable = false, length = 255)
    private final String label;

    @ManyToMany(mappedBy = "permissions")
    private Set<BRole> roles;
}

BPermission

相关(如果此信息有任何帮助)

角色

@Data
@NoArgsConstructor(force = true)
@RequiredArgsConstructor
@EqualsAndHashCode(callSuper = true, exclude = "permissions")
@ToString(callSuper = true, exclude = {"description", "permissions"})
@Entity
public class BRole extends GmsEntity{

    @NotNull()
    @NotBlank()
    @Size(max = 255)
    @Pattern(regexp = "someDefinedRegexp"))
    @Column(unique = true, nullable = false, length = 255)
    private final String label;

    @Size(max = 10485760)
    @Column(length = 10485760)
    private String description;

    private Boolean enabled = false;

    @ManyToMany
    @JoinTable(
            name = "brole_bpermission",
            joinColumns = @JoinColumn(name = "brole_id"),
            inverseJoinColumns = @JoinColumn(name = "bpermission_id")
    )
    private Set<BPermission> permissions;

    public void addPermission(BPermission... p) {
        // code for adding permissions
    }

    public void removePermission(BPermission... p) {
        // code for removing permissions
    }

    public void removeAllPermissions() {
        // code for removing permissions
    }

它们映射到 PostgreSQL9.5.11 数据库如下:

enter image description here

相关的spring配置有:

spring.datasource.url = jdbc:postgresql://127.0.0.1/mydbname
spring.datasource.username = postgres
spring.datasource.password = postgres
spring.datasource.driver-class-name = org.postgresql.Driver
spring.jpa.hibernate.ddl-auto = update
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation = true
spring.jpa.open-in-view = false

对于所有具有 @Column(unique = true) 注释属性的实体,我收到了上述警告消息

问题

  • 为什么会抛出这个警告?也许……一个错误?
  • 我怎样才能摆脱它?

当然,警告有时一点也不坏,但我觉得这里要么没有必要,要么表明尽管 SQLCode 0000 但“应该做一些不同的事情”表示“成功_完成”。

PS:我正在使用 Lombok .

最佳答案

Spring Boot 2.0(Hibernate 5?)显然使用 DROP_RECREATE_QUIETLY 作为 unique constraint update strategy作为默认选项,这确实是错误的,因为每次启动应用程序时它所做的只是删除唯一索引并重新创建它。如果您使用一些(很多?)数据处理数据库,我可以想象使用此选项启动所有内容会有多慢。

在这种情况下,当您在空数据库上启动时,删除索引的操作会生成警告,您可以在日志中看到该警告。当您再次开始时,警告消失,但它会默默地执行重新创建索引的昂贵操作。

要禁用此功能,您需要使用以下参数将策略切换回RECREATE_QUIETLY:

# for plain hibernate
hibernate.schema_update.unique_constraint_strategy=RECREATE_QUIETLY

# for spring data
spring.jpa.properties.hibernate.schema_update.unique_constraint_strategy=RECREATE_QUIETLY

关于java - @Column(unique = true) 产生警告 o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Warning Code: 0, SQLState: 00000,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49283069/

相关文章:

针对 PPGool II 的 Java 查询导致 "unnamed prepared statement does not exist"错误

java - hibernate/Spring 事务管理问题

hibernate - org.hibernate.MappingException : Could not determine type for: java. util.Set,在表 : USERS, 的列 : [org. hibernate.mapping.Column(invoices)]

javascript - 从jsp页面获取ajax请求数据

java - 使用 Swing 和 Threads 设计 JApplet 动画

java - Android Java改变程序中的主题

python - 为什么 Django ORM 允许我在创建对象时省略 NOT NULL 字段的参数?

arrays - Hibernate SQLQuery,如何获取数组和行对象?

java - 映射到 Java 8 中的运行总和

java - Hibernate 数据库迁移 - 合并重复实体