Hibernate/JPA批插入中使用PostgreSQL的(BIG)SERIAL自增主键

栏目: Java · 发布时间: 5年前

内容简介:在PostgreSQL中使用GenerationType.IDENTITY会失效批处理能力。因此使用其(BIG)SERIAL,它的作用类似MySQL的 AUTO_INCREMENT。这里使用GenerationType.SEQUENCE激活批插入处理,通过hi/lo算法优化它。第一步,使用GenerationType.SEQUENCE替代GenerationType.IDENTITY:

在PostgreSQL中使用GenerationType.IDENTITY会失效批处理能力。因此使用其(BIG)SERIAL,它的作用类似 MySQL 的 AUTO_INCREMENT。

这里使用GenerationType.SEQUENCE激活批插入处理,通过hi/lo算法优化它。

第一步,使用GenerationType.SEQUENCE替代GenerationType.IDENTITY:

@Entity
<b>public</b> <b>class</b> TennisPlayer implements Serializable {

    <b>private</b> <b>static</b> <b>final</b> <b>long</b> serialVersionUID = 1L;

    @Id
    <font><i>// This will disable insert batching - AVOID IT! 会失效批处理</i></font><font>
    </font><font><i>// @GeneratedValue(strategy = GenerationType.IDENTITY)</i></font><font>
    
    </font><font><i>// This will work, but better use the below solution 性能不佳</i></font><font>
    </font><font><i>// @GeneratedValue(strategy = GenerationType.AUTO)</i></font><font>

    </font><font><i>// This will allow insert batching and optimizes the identifiers</i></font><font>
    </font><font><i>// generation via the hi/lo algorithm</i></font><font>
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = </font><font>"hilo"</font><font>)
    @GenericGenerator(name = </font><font>"hilo"</font><font>, 
            strategy = </font><font>"org.hibernate.id.enhanced.SequenceStyleGenerator"</font><font>,
            parameters = {
                @Parameter(name = </font><font>"sequence_name"</font><font>, value = </font><font>"sequence"</font><font>),
                @Parameter(name = </font><font>"initial_value"</font><font>, value = </font><font>"1"</font><font>),
                @Parameter(name = </font><font>"increment_size"</font><font>, value = </font><font>"10"</font><font>),
                @Parameter(name = </font><font>"optimizer"</font><font>, value = </font><font>"hilo"</font><font>)
            })
    <b>private</b> Long id;
</font>

这里依靠hi/lo算法在一次数据库往返中获取多个标识符:

Hibernate/JPA批插入中使用PostgreSQL的(BIG)SERIAL自增主键

源代码可以在 这里 找到  。


以上所述就是小编给大家介绍的《Hibernate/JPA批插入中使用PostgreSQL的(BIG)SERIAL自增主键》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Algorithms of the Intelligent Web

Algorithms of the Intelligent Web

Haralambos Marmanis、Dmitry Babenko / Manning Publications / 2009-7-8 / GBP 28.99

Web 2.0 applications provide a rich user experience, but the parts you can't see are just as important-and impressive. They use powerful techniques to process information intelligently and offer featu......一起来看看 《Algorithms of the Intelligent Web》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

随机密码生成器
随机密码生成器

多种字符组合密码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具