multiple http elems config, controller, pages, test (#1307)

* multiple http elems config, controller, pages, test

* fix dependencies

* formatting

* formatting

* update security-test versiob
This commit is contained in:
lor6
2017-03-11 04:45:19 +02:00
committed by KevinGilmore
parent 805868f75f
commit 0647c31521
12 changed files with 374 additions and 7 deletions

View File

@@ -9,7 +9,8 @@ import org.springframework.context.annotation.FilterType;
@Configuration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.voter.*"), @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.multiplelogin.*") })
@ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.voter.*"), @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.multiplelogin.*"),
@ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.baeldung.multipleentrypoints.*") })
public class Application extends SpringBootServletInitializer {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);