zoukankan      html  css  js  c++  java
  • mongo 生命周期

    监听MongoDB的生命周期,只需重写org.springframework.data.mongodb.core.mapping.event.AbstractMongoEventListener的子类,并在SpringApplicationContext中声明这些bean,这样在分派事件时会调用它们。例如:

    public class BeforeConvertListener extends AbstractMongoEventListener<Person> {
      @Override
      public void onBeforeConvert(BeforeConvertEvent<Person> event) {
        ... does some auditing manipulation, set timestamps, whatever ...
      }
    }
    

    AbstractMappingEventListener中提供了以下回调方法:

    方法描述
    onBeforeConvert 调用MongoTemplateinsertinsertListsave操作,在通过MongoConverter将对象转换为文档之前的处理。
    onBeforeSave 调用MongoTemplateinsertinsertListsave操作,在数据库中插入或保存文档之前的处理。
    onAfterSave 调用MongoTemplateinsertinsertListsave操作,在数据库中插入或保存文档之后的处理。
    onAfterLoad 调用MongoTemplate中的findfindAndRemovefindOnegetCollection方法,从数据库检索文档后的处理。
    onAfterConvert 调用MongoTemplate中的findfindAndRemovefindOnegetCollection方法,从数据库检索文档被转换为POJO后的处理。




  • 相关阅读:
    pwd命令
    python-windows环境安装
    python介绍
    elk安装
    elk介绍
    111
    使用CEF作为用户界面
    使用CEF作为浏览器
    c# 内嵌chrome(Webkit)
    待搞清楚
  • 原文地址:https://www.cnblogs.com/vana/p/10860106.html
Copyright © 2011-2022 走看看