Annotation Interface EnableJpaAuditing


@Documented @Target(TYPE) @Retention(RUNTIME) @Import(org.springframework.data.jpa.repository.config.JpaAuditingRegistrar.class) public @interface EnableJpaAuditing
Annotation to enable auditing in JPA via annotation configuration.
Author:
Thomas Darimont, Oliver Gierke, Greg Turnquist
  • Element Details

    • auditorAwareRef

      String auditorAwareRef
      Configures the AuditorAware bean to be used to lookup the current principal.
      Returns:
      Default:
      ""
    • setDates

      boolean setDates
      Configures whether the creation and modification dates are set. Defaults to true.
      Returns:
      Default:
      true
    • modifyOnCreate

      boolean modifyOnCreate
      Configures whether the entity shall be marked as modified on creation. Defaults to true.
      Returns:
      Default:
      true
    • dateTimeProviderRef

      String dateTimeProviderRef
      Configures a DateTimeProvider bean name that allows customizing the TemporalAccessor to be used for setting creation and modification dates.
      Returns:
      Default:
      ""