Example usage for org.springframework.data.auditing MappingAuditableBeanWrapperFactory MappingAuditableBeanWrapperFactory

List of usage examples for org.springframework.data.auditing MappingAuditableBeanWrapperFactory MappingAuditableBeanWrapperFactory

Introduction

In this page you can find the example usage for org.springframework.data.auditing MappingAuditableBeanWrapperFactory MappingAuditableBeanWrapperFactory.

Prototype

public MappingAuditableBeanWrapperFactory(PersistentEntities entities) 

Source Link

Document

Creates a new MappingAuditableBeanWrapperFactory using the given PersistentEntities .

Usage

From source file:org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration.java

@Bean
public AuditableBeanWrapperFactory auditableBeanWrapperFactory() {
    return new MappingAuditableBeanWrapperFactory(persistentEntities());
}