将Spring Security添加为依赖项会导致应用程序的行为方式不同

时间:2014-03-28 20:30:37

标签: java spring tomcat spring-security spring-boot

简单地说:当我向spring-boot-starter-security添加build.gradle时,会发生奇怪的事情。这是我的提炼代码(根本没有其他代码):

public class App {
    public static void main(String[] args) {
        try {
            SpringApplication.run(AppConfiguration.class, args);
        } catch(BeanCreationException e) {
            System.out.printf("HURRAY: %s\n", e.getBeanName());
        }
    }

    @Configuration
    @EnableAutoConfiguration
    @ComponentScan          // !!! NOTE: extends WebMvcConfigurerAdapter !!!
    public static class AppConfiguration extends WebMvcConfigurerAdapter {
        @Autowired
        private MyService myService;
    }

    @Component
    public static class MyService {
        public MyService() {
            throw new RuntimeException("Error");
        }
    }
}

这是我的build.gradle

dependencies {
    testCompile group: "junit", name: "junit", version: "4.11"
    compile group: "org.springframework.boot", name: "spring-boot-starter-web", version: "1.0.0.RC5"
    // compile group: "org.springframework.boot", name: "spring-boot-starter-security", version: "1.0.0.RC5" // HERE
}

我期望的行为是BeanCreationException将被抛出,catch将打印HURRAY。它以这种方式工作。当我尝试在spring-boot-starter-security中添加build.gradle依赖项时,会发生奇怪的事情。取消注释该行后,抛出的异常为ApplicationContextException。如果我以递归方式调用getCause(),结果如下:

org.springframework.context.ApplicationContextException
org.springframework.boot.context.embedded.EmbeddedServletContainerException
org.apache.catalina.LifecycleException
org.apache.catalina.LifecycleException
org.apache.catalina.LifecycleException

你可以看到,根本没有BeanCreationException

当我运行应用时,the logs clearly say某处有一个BeanCreationException

是否有可靠的方法来捕捉BeanCreationException

1 个答案:

答案 0 :(得分:1)

BeanCreationException被抛入另一个线程(Spring Security是一个过滤器,过滤器在嵌入式容器中以特殊方式初始化)。我不确定我们是否可以强制Tomcat使用主线程(我尝试了一次但放弃了,但这并不一定意味着它是不可能的)。如果你可以改进它,请在github上提出建议。