基本介绍
在理解了自动依赖,以及自动配置后, 我们来做一个简单的使用springBoot的了解。
1、引入场景依赖
例如
XML
<!--添加web场景-->
<!-- springBoot会自动管理依赖,并自动配置-->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
那么如何找到场景依赖的的名称呢?官方文档:Developing with Spring Boot
2、查看自动配置了哪些
这个自己看下自动配置的包,目前我还是看不明到底配置了什么。
方法二, 在springBoot的配置文件application.properties, 配置
XML
debug=true
那么,启动项目时会在控制台会提示, 哪些配置生效了,哪些配置没有生效
配置文件中debug=true开启自动配置报告。Negative(不生效)\Positive(生效)
3、自己修改配置
参照官方文档,在配置文件application.properties中做配置,官方文档中 点 Application properties
4、依赖包
这个就看之前写的 简单了解自动依赖 篇