Annotation Interface EnableReactiveElasticsearchAuditing
@Inherited
@Documented
@Target(TYPE)
@Retention(RUNTIME)
@Import(org.springframework.data.elasticsearch.config.ReactiveElasticsearchAuditingRegistrar.class)
public @interface EnableReactiveElasticsearchAuditing
Annotation to enable auditing in Elasticsearch using reactive infrastructure via annotation configuration.
- Since:
- 4.1
- Author:
- Peter-Josef Meisch
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionConfigures theAuditorAware
bean to be used to lookup the current principal.Configures aDateTimeProvider
bean name that allows customizing the date and time to be used for setting creation and modification dates.boolean
Configures whether the entity shall be marked as modified on creation.boolean
Configures whether the creation and modification dates are set.
-
Element Details
-
auditorAwareRef
String auditorAwareRefConfigures theAuditorAware
bean to be used to lookup the current principal.- Default:
- ""
-
setDates
boolean setDatesConfigures whether the creation and modification dates are set. Defaults to true.- Default:
- true
-
modifyOnCreate
boolean modifyOnCreateConfigures whether the entity shall be marked as modified on creation. Defaults to true.- Default:
- true
-
dateTimeProviderRef
String dateTimeProviderRefConfigures aDateTimeProvider
bean name that allows customizing the date and time to be used for setting creation and modification dates.- Default:
- ""
-