springboot 约定优于配置的体现
一、Maven 的目录构造:
默认有 resources 文件夹寄存配置文件
默认打包形式为 jar
二、默认的配置文件:application.properties 或 application.yml 文件
三、默认通过 spring.profiles.active 属性来决定运行环境时的配置文件。
四、EnableAutoConfiguration 默认对于依赖的 starter 进行主动装载。
五、spring-boot-start-web 中默认蕴含 spring-mvc 相干依赖以及内置的 tomcat 容器,使得构建一个 web 利用更加简略。