审计

基本

Spring Data 提供了复杂的支持,以透明方式跟踪创建或更改实体的人员以及更改发生的时间。要从该功能中受益,您必须为实体类配备审计元数据,这些元数据可以使用注释或通过实现接口来定义。 此外,必须通过 Annotation 配置或 XML 配置来启用审计,以注册所需的基础设施组件。 有关配置示例,请参阅特定于 store 的部分。spring-doc.cn

不需要仅跟踪创建和修改日期的应用程序会使其实体实现 AuditorAwarespring-doc.cn

基于注释的审计元数据

我们提供 and capture 创建或修改实体的用户,以及 和 capture 更改发生的时间。@CreatedBy@LastModifiedBy@CreatedDate@LastModifiedDatespring-doc.cn

已审核的实体
class Customer {

  @CreatedBy
  private User user;

  @CreatedDate
  private Instant createdDate;

  // … further properties omitted
}

如您所见,可以有选择地应用注释,具体取决于要捕获的信息。 这些注释(指示在进行更改时进行捕获)可用于 JDK8 日期和时间类型、 、 以及旧版 Java 和 的属性。longLongDateCalendarspring-doc.cn

审计元数据不一定需要位于根级别实体中,但可以添加到嵌入的实体中(取决于使用的实际存储),如下面的代码段所示。spring-doc.cn

审核嵌入实体中的元数据
class Customer {

  private AuditMetadata auditingMetadata;

  // … further properties omitted
}

class AuditMetadata {

  @CreatedBy
  private User user;

  @CreatedDate
  private Instant createdDate;

}

基于接口的审计元数据

如果您不想使用 Comments 来定义审计元数据,则可以让您的 domain 类实现接口。它公开了所有审计属性的 setter 方法。Auditablespring-doc.cn

AuditorAware

如果您使用 or ,则审计基础结构需要以某种方式了解当前主体。为此,我们提供了一个 SPI 接口,您必须实现该接口才能告诉基础设施与应用程序交互的当前用户或系统是谁。泛型类型定义 property 的 Comments 类型或必须是什么类型。@CreatedBy@LastModifiedByAuditorAware<T>T@CreatedBy@LastModifiedByspring-doc.cn

下面的示例展示了使用 Spring Security 对象的接口的实现:Authenticationspring-doc.cn

基于 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 提供的对象,并查找您在实现中创建的自定义实例。我们在这里假设你正在通过实现公开域用户,但根据找到的结果,你也可以从任何地方查找它。AuthenticationUserDetailsUserDetailsServiceUserDetailsAuthenticationspring-doc.cn

ReactiveAuditorAware

使用反应式基础设施时,您可能希望利用上下文信息来提供信息。 我们提供了一个 SPI 接口,您必须实现该接口才能告诉基础设施与应用程序交互的当前用户或系统是谁。泛型类型定义 property 的 Comments 类型或必须是什么类型。@CreatedBy@LastModifiedByReactiveAuditorAware<T>T@CreatedBy@LastModifiedByspring-doc.cn

以下示例显示了使用反应式 Spring Security 对象的接口的实现:Authenticationspring-doc.cn

基于 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 提供的对象,并查找您在实现中创建的自定义实例。我们在这里假设你正在通过实现公开域用户,但根据找到的结果,你也可以从任何地方查找它。AuthenticationUserDetailsUserDetailsServiceUserDetailsAuthenticationspring-doc.cn