21 lines
648 B
Java
21 lines
648 B
Java
|
|
package com.baeldung.toggle;
|
||
|
|
|
||
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
|
||
|
|
import org.togglz.core.manager.EnumBasedFeatureProvider;
|
||
|
|
import org.togglz.core.spi.FeatureProvider;
|
||
|
|
|
||
|
|
@Configuration
|
||
|
|
@EnableJpaRepositories("com.baeldung.toggle")
|
||
|
|
@EntityScan("com.baeldung.toggle")
|
||
|
|
public class ToggleConfiguration {
|
||
|
|
|
||
|
|
@Bean
|
||
|
|
public FeatureProvider featureProvider() {
|
||
|
|
return new EnumBasedFeatureProvider(MyFeatures.class);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|