
br.com.jhonsapp.bootstrap.BootstrapUserApplication Maven / Gradle / Ivy
package br.com.jhonsapp.bootstrap;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.ComponentScan;
import br.com.jhonsapp.bootstrap.authentication.property.SystemProperty;
import br.com.jhonsapp.notifier.NotifierApp;
@SpringBootApplication
@EnableConfigurationProperties(SystemProperty.class)
@ComponentScan(basePackages= {NotifierApp.pathPackage,
BootstrapUserApplication.pathPackage})
public class BootstrapUserApplication {
public static final String pathPackage = "br.com.jhonsapp.bootstrap";
public static void main(String[] args) throws Exception {
SpringApplication.run(new Object[] { NotifierApp.class, BootstrapUserApplication.class}, args);
//SpringApplication.run(CloudsystemApplication.class, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy