Update How-to_ guides.md
parent
7040244cee
commit
5b4f1aa294
|
@ -12,3 +12,9 @@
|
|||
|
||||
Spring Boot自动配置总是尝试尽最大努力去做正确的事,但有时候会失败并且很难说出失败原因。
|
||||
|
||||
在每个Spring Boot `ApplicationContext`中都存在一个相当有用的`ConditionEvaluationReport`。如果开启`DEBUG`日志输出,你将会看到它。如果你使用`spring-boot-actuator`,则会有一个`autoconfig`的端点,它将以JSON形式渲染该报告。可以使用它调试应用程序,并能查看Spring Boot运行时都添加了哪些特性(及哪些没添加)。
|
||||
|
||||
通过查看源码和javadoc可以获取更多问题的答案。以下是一些经验:
|
||||
|
||||
- 查找名为`*AutoConfiguration`的类并阅读源码,特别是`@Conditional*`注解,这可以帮你找出它们启用哪些特性及何时启用。
|
||||
-
|
||||
|
|
Loading…
Reference in New Issue