![JAR search and dependency download from the Maven repository](/logo.png)
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.property.BootstrapUserProperty;
import br.com.jhonsapp.notifier.NotifierApplication;
@SpringBootApplication
@EnableConfigurationProperties(BootstrapUserProperty.class)
@ComponentScan(basePackages= {NotifierApplication.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[] { NotifierApplication.class, BootstrapUserApplication.class}, args);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy