Annotation Interface EnableR2dbcAuditing
@Inherited
@Documented
@Target(TYPE)
@Retention(RUNTIME)
@Import(org.springframework.data.r2dbc.config.R2dbcAuditingRegistrar.class)
public @interface EnableR2dbcAuditing
Annotation to enable auditing in R2DBC via annotation configuration.
- Since:
- 1.2
- Author:
- Mark Paluch
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionConfigures theReactiveAuditorAware
bean to be used to lookup the current principal.Configures aDateTimeProvider
bean name that allows customizing the timestamp 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 theReactiveAuditorAware
bean to be used to lookup the current principal.- Returns:
- empty
String
by default.
- Default:
- ""
-
setDates
boolean setDatesConfigures whether the creation and modification dates are set. Defaults to true.- Returns:
- true by default.
- Default:
- true
-
modifyOnCreate
boolean modifyOnCreateConfigures whether the entity shall be marked as modified on creation. Defaults to true.- Returns:
- true by default.
- Default:
- true
-
dateTimeProviderRef
String dateTimeProviderRefConfigures aDateTimeProvider
bean name that allows customizing the timestamp to be used for setting creation and modification dates.- Returns:
- empty
String
by default.
- Default:
- ""
-