gpt4 book ai didi

java - 如何在 Hibernate 中用 TableGenerator 替换已弃用的 MultipleHiLoPerTableGenerator

转载 作者:IT老高 更新时间:2023-10-28 13:51:46 29 4
gpt4 key购买 nike

我在 Spring Boot 1.4.0.RELEASE 的应用程序中使用 hibernate 。

索引的实体看起来类似于:

@Entity(name = "SearchableTariffItem")
@Indexed
public class SearchableTariffItem {
public static final String ZIFFER_ANALYZER_NAME = "ZIFFER_ANALYZER";

@GeneratedValue(strategy = GenerationType.TABLE)
@Id
private Long id;
...
}

我现在第一次保存实体时收到以下警告:

2016-08-26 15:08:32.501 WARN 8476 — [apr-8080-exec-6] org.hibernate.orm.deprecation : HHH90000015: Found use of deprecated [org.hibernate.id.MultipleHiLoPerTableGenerator] table-based id generator; use org.hibernate.id.enhanced.TableGenerator instead. See Hibernate Domain Model Mapping Guide for details.

不幸的是,我不知道在哪里可以配置我的应用程序(最好在 application.yml 中)以使用 TableGenerator 类。

我使用以下依赖项:

  • hibernate 核心 5.0.9.Final
  • Hibernate 搜索 ORM 5.5.1.Final
  • Lucene 5.3.1

最佳答案

在 Hibernate 中控制这种行为的属性是 hibernate.id.new_generator_mappings,它在 Hibernate 5 中默认为 true -> 这意味着将使用新的 TableGenerator已弃用的 MultipleHiLoPerTableGenerator

然而,Spring Boot 将此属性默认为 false,这意味着将使用旧的生成器,除非您明确告诉它您想要新的生成器。您需要将属性 spring.jpa.hibernate.use-new-id-generator-mappings 设置为 true 以获取 TableGenerator。

https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#generator-mappings

关于java - 如何在 Hibernate 中用 TableGenerator 替换已弃用的 MultipleHiLoPerTableGenerator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39228304/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com