稽核

基礎知識

Spring Data 提供完善的支援,以透明地追蹤實體的建立者、變更者以及變更發生的時間。為了從該功能中獲益,您必須為實體類別配備稽核 metadata,這些 metadata 可以使用註解或實作介面來定義。此外,必須透過註解配置或 XML 配置啟用稽核,以註冊所需的基础架構組件。有關配置範例,請參閱特定儲存區章節。

僅追蹤建立和修改日期的應用程式,不需要讓其實體實作 AuditorAware

基於註解的稽核 Metadata

我們提供 @CreatedBy@LastModifiedBy 來捕捉建立或修改實體的使用者,以及 @CreatedDate@LastModifiedDate 來捕捉變更發生的時間。

一個被稽核的實體
class Customer {

  @CreatedBy
  private User user;

  @CreatedDate
  private Instant createdDate;

  // … further properties omitted
}

如您所見,註解可以選擇性地應用,具體取決於您想要捕捉的資訊。指示捕捉變更時間的註解,可以用於 JDK8 日期和時間類型、longLong 以及舊版 Java DateCalendar 類型的屬性。

稽核 metadata 不一定需要存在於根層級實體中,但可以新增到嵌入式實體中(取決於實際使用的儲存區),如下面的程式碼片段所示。

嵌入式實體中的稽核 Metadata
class Customer {

  private AuditMetadata auditingMetadata;

  // … further properties omitted
}

class AuditMetadata {

  @CreatedBy
  private User user;

  @CreatedDate
  private Instant createdDate;

}

基於介面的稽核 Metadata

如果您不想使用註解來定義稽核 metadata,您可以讓您的網域類別實作 Auditable 介面。它為所有稽核屬性公開 setter 方法。

AuditorAware

如果您使用 @CreatedBy@LastModifiedBy,稽核基礎架構需要以某種方式意識到目前的委託人。為此,我們提供 AuditorAware<T> SPI 介面,您必須實作該介面,以告知基礎架構目前與應用程式互動的使用者或系統是誰。泛型類型 T 定義了以 @CreatedBy@LastModifiedBy 註解的屬性必須是什麼類型。

以下範例顯示了介面的實作,該實作使用 Spring Security 的 Authentication 物件

基於 Spring Security 的 AuditorAware 實作
class SpringSecurityAuditorAware implements AuditorAware<User> {

  @Override
  public Optional<User> getCurrentAuditor() {

    return Optional.ofNullable(SecurityContextHolder.getContext())
            .map(SecurityContext::getAuthentication)
            .filter(Authentication::isAuthenticated)
            .map(Authentication::getPrincipal)
            .map(User.class::cast);
  }
}

此實作存取 Spring Security 提供的 Authentication 物件,並查找您在 UserDetailsService 實作中建立的自訂 UserDetails 實例。我們在此假設您透過 UserDetails 實作公開網域使用者,但根據找到的 Authentication,您也可以從任何地方查找它。

ReactiveAuditorAware

當使用反應式基礎架構時,您可能希望利用上下文資訊來提供 @CreatedBy@LastModifiedBy 資訊。我們提供 ReactiveAuditorAware<T> SPI 介面,您必須實作該介面,以告知基礎架構目前與應用程式互動的使用者或系統是誰。泛型類型 T 定義了以 @CreatedBy@LastModifiedBy 註解的屬性必須是什麼類型。

以下範例顯示了介面的實作,該實作使用反應式 Spring Security 的 Authentication 物件

基於 Spring Security 的 ReactiveAuditorAware 實作
class SpringSecurityAuditorAware implements ReactiveAuditorAware<User> {

  @Override
  public Mono<User> getCurrentAuditor() {

    return ReactiveSecurityContextHolder.getContext()
                .map(SecurityContext::getAuthentication)
                .filter(Authentication::isAuthenticated)
                .map(Authentication::getPrincipal)
                .map(User.class::cast);
  }
}

此實作存取 Spring Security 提供的 Authentication 物件,並查找您在 UserDetailsService 實作中建立的自訂 UserDetails 實例。我們在此假設您透過 UserDetails 實作公開網域使用者,但根據找到的 Authentication,您也可以從任何地方查找它。