无论如何都要在使用Spring Data Repository保存后进行记录

时间:2017-03-04 08:57:25

标签: spring-data-rest

我正在尝试使用Spring Data Repository在保存实体后记录一些信息,无论如何都在那里?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用Annotated repo event handlers

只需将 @RepositoryEventHandler 注释添加到您的处理程序类,而不是在此类中使用 @HandleAfterCreate @HandleAfterSave 注释实现处理程序方法

    @RepositoryEventHandler 
    public class EventHandler {

      @HandleAfterCreate
      @HandleAfterSave
      public void handleAfterCreateOrSave(Entity e) {
        // LOG...
      }
    }