简要地说:当我在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
? 最佳答案
BeanCreationException
被抛出到另一个线程中(Spring Security是一个过滤器,并且以特殊方式在嵌入式容器中初始化过滤器)。我不确定我们是否可以强制Tomcat使用主线程(我尝试了一次并放弃了,但这不一定意味着它是不可能的)。如果您可以改善它,请在github中提出建议。
关于java - 将Spring Security添加为依赖项会导致应用行为不同,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22722653/