我刚开始使用 Spring boot 并开始知道使用 Spring boot 时,它提供了“默认值”(约定优于配置),因此几乎可以满足 80% 的依赖关系。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
考虑上面的版本spring-boot-starter-parent,我怎么知道spring boot将为我的项目提出什么默认值?有没有办法找到它要选择的默认值?
任何人都可以帮助我理解它吗?
相关分类