com.github.mikesafonov.specification.builder.starter.AutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-specification-builder Show documentation
Show all versions of spring-boot-starter-specification-builder Show documentation
Spring Boot starter for building specifications in declarative way
package com.github.mikesafonov.specification.builder.starter;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author MikeSafonov
*/
@Configuration
public class AutoConfiguration {
@Bean
public SpecificationBuilder specificationBuilder() {
return new SpecificationBuilder();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy