<small id='b71At'></small><noframes id='b71At'>

    <tfoot id='b71At'></tfoot>

      • <bdo id='b71At'></bdo><ul id='b71At'></ul>
    1. <legend id='b71At'><style id='b71At'><dir id='b71At'><q id='b71At'></q></dir></style></legend>
    2. <i id='b71At'><tr id='b71At'><dt id='b71At'><q id='b71At'><span id='b71At'><b id='b71At'><form id='b71At'><ins id='b71At'></ins><ul id='b71At'></ul><sub id='b71At'></sub></form><legend id='b71At'></legend><bdo id='b71At'><pre id='b71At'><center id='b71At'></center></pre></bdo></b><th id='b71At'></th></span></q></dt></tr></i><div id='b71At'><tfoot id='b71At'></tfoot><dl id='b71At'><fieldset id='b71At'></fieldset></dl></div>

    3. onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体)

      时间:2024-08-24

      • <legend id='2J1gC'><style id='2J1gC'><dir id='2J1gC'><q id='2J1gC'></q></dir></style></legend>

        <small id='2J1gC'></small><noframes id='2J1gC'>

        • <bdo id='2J1gC'></bdo><ul id='2J1gC'></ul>

          • <tfoot id='2J1gC'></tfoot>
              <tbody id='2J1gC'></tbody>

                <i id='2J1gC'><tr id='2J1gC'><dt id='2J1gC'><q id='2J1gC'><span id='2J1gC'><b id='2J1gC'><form id='2J1gC'><ins id='2J1gC'></ins><ul id='2J1gC'></ul><sub id='2J1gC'></sub></form><legend id='2J1gC'></legend><bdo id='2J1gC'><pre id='2J1gC'><center id='2J1gC'></center></pre></bdo></b><th id='2J1gC'></th></span></q></dt></tr></i><div id='2J1gC'><tfoot id='2J1gC'></tfoot><dl id='2J1gC'><fieldset id='2J1gC'></fieldset></dl></div>

                本文介绍了onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如果我的实体有计算字段应该在保存到数据库之前更新(db insertupdate),如何在 Hibernate 或 Spring Data Repository save() 之前挂钩方法调用?

                If my Entity has calculated fields should be updated before saving to database (db insert or update), How can I hook a method call before Hibernate or Spring Data Repository save()?

                推荐答案

                我认为对你来说最好的选择是 EntityListener 使用 @PrePersist@PreUpdate 注释,为您的实体侦听器创建配置,您将可以访问要保存的每个实例,每次您尝试使用 hibernate 或 spring 数据存储库持久化或更新某些内容时都会调用此方法

                I think the best option for you are EntityListener using the @PrePersist and @PreUpdate annotations, create the configuration for your entity listener and you will get access to each instance that you want to save, this method is being called each time you are trying to persist or update something with hibernate or spring data repositories

                public class EntityToPersistListener{
                
                   @PrePersist
                   @PreUpdate
                   public void methodExecuteBeforeSave(final EntityToPersist reference) {
                      //Make any change to the entity such as calculation before the save process
                      reference.setAmount(xxxx)
                    }
                
                }
                

                你只需要在你的实体 bean 上面添加一个注解

                You just need to add an annotation above your entity bean

                @Entity
                @Table(name = "", schema = "", catalog = "")
                @EntityListeners(EntityToPersistListener.class)
                public class EntityToPersist implements Serializable {
                

                检查这个 链接进一步参考

                这篇关于onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:为什么没有使用 Spring Data JPA 设置版本属性? 下一篇:使用 Java 访问 MongoDB 时连接到服务器 localhost:27017 时监控线程出现异常

                相关文章

              1. <legend id='FBfWt'><style id='FBfWt'><dir id='FBfWt'><q id='FBfWt'></q></dir></style></legend>

                <small id='FBfWt'></small><noframes id='FBfWt'>

                <tfoot id='FBfWt'></tfoot>
                <i id='FBfWt'><tr id='FBfWt'><dt id='FBfWt'><q id='FBfWt'><span id='FBfWt'><b id='FBfWt'><form id='FBfWt'><ins id='FBfWt'></ins><ul id='FBfWt'></ul><sub id='FBfWt'></sub></form><legend id='FBfWt'></legend><bdo id='FBfWt'><pre id='FBfWt'><center id='FBfWt'></center></pre></bdo></b><th id='FBfWt'></th></span></q></dt></tr></i><div id='FBfWt'><tfoot id='FBfWt'></tfoot><dl id='FBfWt'><fieldset id='FBfWt'></fieldset></dl></div>
                    • <bdo id='FBfWt'></bdo><ul id='FBfWt'></ul>