All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.icthh.xm.commons.domainevent.db.config.JpaEntityMapperConfiguration Maven / Gradle / Ivy

The newest version!
package com.icthh.xm.commons.domainevent.db.config;

import com.icthh.xm.commons.domainevent.service.builder.DomainEventFactory;
import com.icthh.xm.commons.domainevent.db.service.mapper.impl.TypeKeyAwareJpaEntityMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class JpaEntityMapperConfiguration {

    @Bean
    TypeKeyAwareJpaEntityMapper typeKeyAwareJpaEntityMapper(DomainEventFactory domainEventFactory){
        return new TypeKeyAwareJpaEntityMapper(domainEventFactory);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy