package fr.ekito.example; import fr.ekito.example.config.Constants; import fr.ekito.example.repository.UserRepository; import fr.ekito.example.security.SecurityUtils; import fr.ekito.example.service.DataBootstrap; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.actuate.autoconfigure.MetricFilterAutoConfiguration; import org.springframework.boot.actuate.autoconfigure.MetricRepositoryAutoConfiguration; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.context.annotation.ComponentScan; import org.springframework.core.env.Environment; import org.springframework.core.env.SimpleCommandLinePropertySource; import javax.annotation.PostConstruct; import javax.inject.Inject; import java.io.IOException; import java.util.Arrays; @ComponentScan @EnableAutoConfiguration(exclude = {MetricFilterAutoConfiguration.class, MetricRepositoryAutoConfiguration.class}) public class Application implements InitializingBean{ private final Logger log = LoggerFactory.getLogger(Application.class); @Inject private Environment env; /** * Initializes myApp. * <p/> * Spring profiles can be configured with a program arguments --spring.profiles.active=your-active-profile * <p/> */ @PostConstruct public void initApplication() throws IOException { if (env.getActiveProfiles().length == 0) { log.warn("No Spring profile configured, running with default configuration"); } else { log.info("Running with Spring profile(s) : {}", Arrays.toString(env.getActiveProfiles())); } } /** * Main method, used to run the application. */ public static void main(String[] args) { SpringApplication app = new SpringApplication(Application.class); app.setShowBanner(false); SimpleCommandLinePropertySource source = new SimpleCommandLinePropertySource(args); // Check if the selected profile has been set as argument. // if not the development profile will be added addDefaultProfile(app, source); app.run(args); } /** * Set a default profile if it has not been set */ private static void addDefaultProfile(SpringApplication app, SimpleCommandLinePropertySource source) { if (!source.containsProperty("spring.profiles.active")) { app.setAdditionalProfiles(Constants.SPRING_PROFILE_DEVELOPMENT); } } @Autowired DataBootstrap dataBootstrap; @Autowired UserRepository userRepository; @Override public void afterPropertiesSet() throws Exception { dataBootstrap.initData(); SecurityUtils.userRepository = userRepository; } }