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

org.awsutils.dynamodb.config.EntityValidationInitializer Maven / Gradle / Ivy

There is a newer version: 2.0.0-Beta5
Show newest version
package org.awsutils.dynamodb.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
public class EntityValidationInitializer {
    @Value("${org.awsutils.dynamodb.entities.basePackage:org.awsutils}")
    private String dtoBasePackage;

    @Bean
    EntityValidationConfig entityValidationConfig() {
        return new EntityValidationConfig(dtoBasePackage);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy