2017-02-10 10:49:01 +02:00
|
|
|
package org.baeldung;
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
|
|
import org.springframework.boot.context.web.SpringBootServletInitializer;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.context.annotation.FilterType;
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
@EnableAutoConfiguration
|
2017-02-11 14:00:52 +02:00
|
|
|
@ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.voter.*"), @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.multiplelogin.*") })
|
2017-02-10 10:49:01 +02:00
|
|
|
public class Application extends SpringBootServletInitializer {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication.run(Application.class, args);
|
|
|
|
}
|
|
|
|
}
|