<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 保存的任何实体)

      onSave() (for any Entity saved with Hibernate/Spring Data Repositories)(onSave()(对于使用 Hibernate/Spring Data Repositories 保存的任何实体))

      • <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 保存的任何实体)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                How to send data to COM PORT using JAVA?(如何使用 JAVA 向 COM PORT 发送数据?)
                How to make a report page direction to change to quot;rtlquot;?(如何使报表页面方向更改为“rtl?)
                Use cyrillic .properties file in eclipse project(在 Eclipse 项目中使用西里尔文 .properties 文件)
                Is there any way to detect an RTL language in Java?(有没有办法在 Java 中检测 RTL 语言?)
                How to load resource bundle messages from DB in Java?(如何在 Java 中从 DB 加载资源包消息?)
                How do I change the default locale settings in Java to make them consistent?(如何更改 Java 中的默认语言环境设置以使其保持一致?)

                  <tbody id='FBfWt'></tbody>
                  <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>